/[PAMELA software]/PamVMC/tof/include/PamVMCDetTof.h
ViewVC logotype

Annotation of /PamVMC/tof/include/PamVMCDetTof.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Thu Feb 19 16:00:16 2009 UTC (15 years, 9 months ago) by nikolas
Branch: MAIN
File MIME type: text/plain
Cleaning files before release

1 nikolas 1.1 #ifndef PAMVMC_DET_TOF_H
2     #define PAMVMC_DET_TOF_H
3    
4     #include "PamVMCDetector.h"
5    
6     #include "PamVMCDetTofS1.h"
7     #include "PamVMCDetTofS2.h"
8     #include "PamVMCDetTofS3.h"
9    
10     class PamVMCDetTof : public PamVMCDetector {
11    
12     public:
13    
14    
15     PamVMCDetTof():PamVMCDetector("Tof")
16     {
17     TString t = "S1";
18     fsubdet.Add( new TObjString(t), new PamVMCDetTofS1());
19     t = "S2";
20     fsubdet.Add( new TObjString(t), new PamVMCDetTofS2());
21     t = "S3";
22     fsubdet.Add( new TObjString(t), new PamVMCDetTofS3());
23     }
24    
25     void DefineGeometry(){; };
26    
27     void DefineCuts(){; };
28    
29     ClassDef(PamVMCDetTof,1)
30     };
31    
32    
33     #endif //PAMVMC_DET_TOF_H

  ViewVC Help
Powered by ViewVC 1.1.23