OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Kapton.h
Go to the documentation of this file.
1 #ifndef KAPTON_H
2 #define KAPTON_H
3 
4 #include "Physics/Material.h"
5 
6 namespace Physics {
7  class Kapton: public Material {
8  public:
9  Kapton():
10  Material(6,
11  12,
12  1.4,
13  39.95,
14  79.6, // source: pstar from NIST
15  {{2.601, 1.701e3, 1.279e3, 1.638e-2}})
16  { }
17  };
18 }
19 #endif