Parent Directory | Revision Log
Cleaning files before release
1 | #ifndef PAMVMC_DET_AC_H |
2 | #define PAMVMC_DET_AC_H |
3 | |
4 | #include "PamVMCDetector.h" |
5 | |
6 | #include "PamVMCDetCard.h" |
7 | #include "PamVMCDetCas.h" |
8 | #include "PamVMCDetCat.h" |
9 | |
10 | |
11 | |
12 | class PamVMCDetAc : public PamVMCDetector { |
13 | |
14 | public: |
15 | |
16 | |
17 | PamVMCDetAc():PamVMCDetector("Ac") |
18 | { |
19 | TString t = "Card"; |
20 | fsubdet.Add( new TObjString(t), new PamVMCDetCard()); |
21 | t = "Cas"; |
22 | fsubdet.Add( new TObjString(t), new PamVMCDetCas()); |
23 | t = "Cat"; |
24 | fsubdet.Add( new TObjString(t), new PamVMCDetCat()); |
25 | }; |
26 | |
27 | |
28 | void DefineGeometry(){;} |
29 | |
30 | void DefineCuts(){;} |
31 | |
32 | ClassDef(PamVMCDetAc,1) |
33 | }; |
34 | |
35 | |
36 | #endif //PAMVMC_DET_AC_H |
ViewVC Help | |
Powered by ViewVC 1.1.23 |