BmnRoot
Loading...
Searching...
No Matches
BmnSiProf.h
Go to the documentation of this file.
1#ifndef BMNSiProf_H
2#define BMNSiProf_H
3
4#include "BmnSiProfPoint.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 BmnSiProf : public FairDetector
14{
15
16 public:
17 // *@param name detector name
18 // *@param active sensitivity flag
19 BmnSiProf(const char* name, Bool_t active);
20
22 virtual ~BmnSiProf();
23
24 // Defines the action to be taken when a step is inside the
25 // active volume. Creates BmnSiProfPoints 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 SiProf 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 BmnSiProfPoint to the HitCollection
86 BmnSiProfPoint* 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 BmnSiProf(const BmnSiProf&) = delete;
104 BmnSiProf operator=(const BmnSiProf&) = delete;
105
106 ClassDef(BmnSiProf, 1)
107};
108
109//------------------------------------------------------------------------------
110inline void BmnSiProf::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 /* BMNSiProf_H */
virtual void ConstructGeometry()
virtual void Register()
void ExpandNodeForGdml(TGeoNode *node)
virtual void Reset()
virtual void CopyClones(TClonesArray *cl1, TClonesArray *cl2, Int_t offset)
virtual ~BmnSiProf()
virtual Bool_t ProcessHits(FairVolume *vol=0)
virtual TClonesArray * GetCollection(Int_t iColl) const
virtual void EndOfEvent()
virtual void ConstructGDMLGeometry(TGeoMatrix *)
virtual Bool_t CheckIfSensitive(std::string name)
BmnSiProf(const char *name, Bool_t active)
virtual void Print(Option_t *) const