OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Air.h
Go to the documentation of this file.
1 #ifndef AIR_H
2 #define AIR_H
3 
4 #include "Physics/Material.h"
5 
6 namespace Physics {
7  class Air: public Material {
8  public:
9  Air():
10  Material(7,
11  14,
12  0.0012,
13  37.99,
14  85.7,
15  {{3.350, 1.683e3, 1.900e3, 2.513e-2}})
16  { }
17  };
18 }
19 #endif
Air()
Definition: Air.h:9