BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
BesMucConstruction.hh
Go to the documentation of this file.
1//---------------------------------------------------------------------------//
2// BOOST --- BESIII Object_Oriented Simulation Tool //
3//---------------------------------------------------------------------------//
4//Descpirtion: Muon Chamber as a concrete class
5// it's better to define an envelope then position it in BES
6//Author: Youzy Peking University mail: [email protected]
7//Created: Nov, 2003
8//Comment:
9//---------------------------------------------------------------------------//
10//
11#ifndef BesMucConstruction_h
12#define BesMucConstruction_h 1
13
14#include "BesSubdetector.hh"
15#include "G4LogicalVolume.hh"
16#include "G4VPhysicalVolume.hh"
17
18class G4LogicalVolume;
19
21{
22public:
23
25 virtual ~BesMucConstruction();
26
27 //construct MUC detector
28 void Construct(G4LogicalVolume* logicBes);
29 G4VPhysicalVolume* GetPhysicalMuc(){return physicalMuc;};
30
31
32 //your private data member (geometry, etc) here:
33private:
34 G4VPhysicalVolume* physicalMuc;
35 G4LogicalVolume* logicalMuc;
36
37};
38#endif
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
G4VPhysicalVolume * GetPhysicalMuc()
void Construct(G4LogicalVolume *logicBes)