OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Copper.h
Go to the documentation of this file.
1 #ifndef COPPER_H
2 #define COPPER_H
3 
4 #include "Physics/Material.h"
5 
6 #include <cmath>
7 
8 namespace Physics {
9  class Copper: public Material {
10  public:
11  Copper():
12  Material(29,
13  63.54,
14  8.96,
15  12.86,
16  322.0,
17  {{4.194, 4.649e3, 8.113e1, 2.242e-2}})
18  { }
19  };
20 }
21 #endif