BmnRoot
Loading...
Searching...
No Matches
BmnCSC.h
Go to the documentation of this file.
1#ifndef BMNCSC_H
2#define BMNCSC_H
3
4#include "BmnCSCPoint.h"
5#include "FairDetector.h"
6#include "TClonesArray.h"
7#include "TGeoMedium.h"
8#include "TLorentzVector.h"
9#include "TVector3.h"
10
11#include <map>
12
13class BmnCSC : public FairDetector
14{
15
16 public:
17 // *@param name detector name
18 // *@param active sensitivity flag
19 BmnCSC(const char* name, Bool_t active);
20
22 virtual ~BmnCSC();
23
24 // Defines the action to be taken when a step is inside the
25 // active volume. Creates BmnCSCPoints and adds them to the collection.
26 // @param vol Pointer to the active volume
27 virtual Bool_t ProcessHits(FairVolume* vol = 0);
28
29 // If verbosity level is set, print hit collection at the
30 // end of the event and resets it afterwards.
31 virtual void EndOfEvent();
32
33 // Registers the hit collection in the ROOT manager.
34 virtual void Register();
35
36 // Accessor to the hit collection
37 virtual TClonesArray* GetCollection(Int_t iColl) const;
38
39 // Screen output of hit collection.
40 virtual void Print(Option_t*) const;
41
42 // Clears the hit collection
43 virtual void Reset();
44
45 // *@param cl1 Origin
46 // *@param cl2 Target
47 // *@param offset Index offset
48 virtual void CopyClones(TClonesArray* cl1, TClonesArray* cl2, Int_t offset);
49
50 // Constructs the CSC geometry
51 virtual void ConstructGeometry();
52
53 // Construct the geometry from a GDML geometry file
54 virtual void ConstructGDMLGeometry(TGeoMatrix*);
55
56 void ExpandNodeForGdml(TGeoNode* node);
57
58 // Check whether a volume is sensitive.
59 // The decision is based on the volume name. Only used in case
60 // of GDML and ROOT geometry.
61 // @param name Volume name
62 // @value kTRUE if volume is sensitive, else kFALSE
63 virtual Bool_t CheckIfSensitive(std::string name);
64
65 private:
66 // Track information to be stored until the track leaves the active volume.
67 Int_t fTrackID;
68 Int_t fVolumeID;
69 TVector3 fPosIn;
70 TVector3 fPosOut;
71 TVector3 fMomIn;
72 TVector3 fMomOut;
73 Double32_t fTime;
74 Double32_t fLength;
75 Double32_t fELoss;
76 Int_t fIsPrimary;
77 Double_t fCharge;
78 Int_t fPdgId;
79
80 Int_t fPosIndex;
81 TClonesArray* fPointCollection;
82
83 std::map<TString, TGeoMedium*> fFixedMedia; // List of media "repaired" after importing GMDL
84
85 // Adds a BmnCSCPoint to the HitCollection
86 BmnCSCPoint* AddHit(Int_t trackID,
87 Int_t detID,
88 TVector3 posIn,
89 TVector3 posOut,
90 TVector3 momIn,
91 TVector3 momOut,
92 Double_t time,
93 Double_t length,
94 Double_t eLoss,
95 Int_t isPrimary,
96 Double_t charge,
97 Int_t pdgId,
98 Int_t stationNum,
99 Int_t moduleNum);
100
101 // Resets the private members for the track parameters
102 void ResetParameters();
103 BmnCSC(const BmnCSC&) = delete;
104 BmnCSC operator=(const BmnCSC&) = delete;
105
106 ClassDef(BmnCSC, 1)
107};
108
109//------------------------------------------------------------------------------
110inline void BmnCSC::ResetParameters()
111{
112 fTrackID = -1;
113 fVolumeID = 0;
114 fPosIn.SetXYZ(0.0, 0.0, 0.0);
115 fPosOut.SetXYZ(0.0, 0.0, 0.0);
116 fMomIn.SetXYZ(0.0, 0.0, 0.0);
117 fMomOut.SetXYZ(0.0, 0.0, 0.0);
118 fTime = fLength = fELoss = 0.0;
119 fPosIndex = 0;
120};
121//------------------------------------------------------------------------------
122
123#endif /* BMNCSC_H */
virtual ~BmnCSC()
virtual void Reset()
virtual Bool_t CheckIfSensitive(std::string name)
virtual void Print(Option_t *) const
virtual void CopyClones(TClonesArray *cl1, TClonesArray *cl2, Int_t offset)
void ExpandNodeForGdml(TGeoNode *node)
virtual void ConstructGDMLGeometry(TGeoMatrix *)
BmnCSC(const char *name, Bool_t active)
virtual void EndOfEvent()
virtual Bool_t ProcessHits(FairVolume *vol=0)
virtual void Register()
virtual TClonesArray * GetCollection(Int_t iColl) const
virtual void ConstructGeometry()