OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Mylar.h
Go to the documentation of this file.
1 #ifndef MYLAR_H
2 #define MYLAR_H
3 
4 #include "Physics/Material.h"
5 
6 namespace Physics {
7  class Mylar: public Material {
8  public:
9  Mylar():
10  Material(6.702,
11  12.88,
12  1.4,
13  39.95,
14  78.7,
15  {{3.350, 1683, 1900, 2.513e-02}})
16  { }
17  };
18 }
19 #endif