OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
Graphite.h
Go to the documentation of this file.
1//
2// Class Graphite
3// Defines Graphite as a material for particle-matter interactions
4//
5// Data taken from Standard Atomic Weight 2019 (https://www.qmul.ac.uk/sbcs/iupac/AtWt/),
6// atomic properties from PDG database (https://pdg.lbl.gov/2020/AtomicNuclearProperties)
7// and fit coefficients from ICRU Report 49.
8//
9// Copyright (c) 2019 - 2021, Paul Scherrer Institut, Villigen PSI, Switzerland
10// All rights reserved
11//
12// This file is part of OPAL.
13//
14// OPAL is free software: you can redistribute it and/or modify
15// it under the terms of the GNU General Public License as published by
16// the Free Software Foundation, either version 3 of the License, or
17// (at your option) any later version.
18//
19// You should have received a copy of the GNU General Public License
20// along with OPAL. If not, see <https://www.gnu.org/licenses/>.
21//
22#ifndef GRAPHITE_H
23#define GRAPHITE_H
24
25#include "Physics/Material.h"
26
27namespace Physics {
28 class Graphite : public Material {
29 public:
31 : Material(
32 6, 12.0107, 2.210, 42.70, 78.0,
33 {{0.0, 2.601, 1.701e3, 1.279e3, 1.638e-2, 3.80133, 0.41590, 12.9966, 117.83,
34 242.28}}) {}
35 };
36} // namespace Physics
37#endif
Definition Air.h:27