]> git.uio.no Git - u/mrichter/AliRoot.git/blob - Flugg/examples/fluggEx/T36flugg/include/T36ModuleParam.hh
Initial import
[u/mrichter/AliRoot.git] / Flugg / examples / fluggEx / T36flugg / include / T36ModuleParam.hh
1 // $Id$
2 // Flugg tag $Name$
3
4 //
5 //  Parameterisation for t36 module
6 //
7
8 #ifndef T36ModuleParam_H
9 #define T36ModuleParam_H 1
10
11 #include "globals.hh"
12 #include "G4VPVParameterisation.hh"
13
14 class G4VPhysicalVolume;
15 class G4Box;
16
17 class T36ModuleParam : public G4VPVParameterisation
18
19   public:
20     T36ModuleParam(G4double ModuleSizeZ, G4double NbOfModules); 
21     ~T36ModuleParam();
22     void ComputeTransformation
23     (const G4int copyNo,G4VPhysicalVolume *physVol) const;
24
25   private:
26
27     G4double fModuleSizeZ;  
28     G4double fNbOfModules;      
29 };
30
31 #endif
32
33