OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Gold.h
Go to the documentation of this file.
1 #ifndef GOLD_H
2 #define GOLD_H
3 
4 #include "Physics/Material.h"
5 
6 #include <cmath>
7 
8 namespace Physics {
9  class Gold: public Material {
10  public:
11  Gold():
12  Material(79,
13  197,
14  19.3,
15  6.46,
16  790.0,
17  {{5.458, 7.852e3, 9.758e2, 2.077e-2}})
18  { }
19  };
20 }
21 #endif