]>
Commit | Line | Data |
---|---|---|
a2b41b89 | 1 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
2 | * See cxx source for full Copyright notice */ | |
3 | ||
4 | // $Id$ | |
5 | // Revision of includes 07/05/2004 | |
6 | // | |
5398f946 | 7 | /// \ingroup sim |
692de412 | 8 | /// \class AliMUONSt2GeometryBuilderV2 |
9 | /// \brief MUON Station2 detailed geometry construction class | |
10 | /// | |
11 | /// Authors: SANJOY PAL ,Prof. SUKALYAN CHATTOPADHAYAY [SINP, KOLKATA] | |
12 | /// & Dr.SHAKEEL AHMAD (AMU), INDIA | |
a2b41b89 | 13 | |
14 | #ifndef ALI_MUON_ST2_GEOMETRY_BUILDER_V2_H | |
15 | #define ALI_MUON_ST2_GEOMETRY_BUILDER_V2_H | |
16 | ||
17 | #include "AliMUONVGeometryBuilder.h" | |
18 | ||
19 | class AliMUON; | |
20 | ||
21 | class AliMUONSt2GeometryBuilderV2 : public AliMUONVGeometryBuilder | |
22 | { | |
23 | public: | |
24 | AliMUONSt2GeometryBuilderV2(AliMUON* muon); | |
25 | AliMUONSt2GeometryBuilderV2(); | |
26 | virtual ~AliMUONSt2GeometryBuilderV2(); | |
27 | ||
28 | // methods | |
29 | virtual void CreateGeometry(); | |
b96f7067 | 30 | virtual void SetVolumes(); |
a2b41b89 | 31 | virtual void SetTransformations(); |
32 | virtual void SetSensitiveVolumes(); | |
33 | ||
34 | protected: | |
161d3338 | 35 | |
36 | private: | |
71a2d3aa | 37 | /// Not implemented |
a2b41b89 | 38 | AliMUONSt2GeometryBuilderV2(const AliMUONSt2GeometryBuilderV2& rhs); |
71a2d3aa | 39 | /// Not implemented |
a2b41b89 | 40 | AliMUONSt2GeometryBuilderV2& operator = (const AliMUONSt2GeometryBuilderV2& rhs); |
71a2d3aa | 41 | |
42 | AliMUON* fMUON; ///< the MUON detector class | |
a2b41b89 | 43 | |
692de412 | 44 | ClassDef(AliMUONSt2GeometryBuilderV2,1) //MUON Station2 detailed geometry construction class |
a2b41b89 | 45 | }; |
46 | ||
ffc01fb1 | 47 | #endif //ALI_MUON_ST2_GEOMETRY_BUILDER_V2_H |