BmnRoot
Loading...
Searching...
No Matches
BmnMwpc.h
Go to the documentation of this file.
1//------------------------------------------------------------------------------------------------------------------------
2// -------------------------------------------------------------------------
3// ----- BmnMWPC header file -----
4// -------------------------------------------------------------------------
5
6/*
7 ** Defines the active detector MWPC. Constructs the geometry and
8 ** registeres MCPoints.
9 **/
10
11#ifndef BMNMWPC_H
12#define BMNMWPC_H
13
14#include "BmnMwpcPoint.h"
15#include "FairDetector.h"
16#include "TClonesArray.h"
17#include "TGeoMedium.h"
18#include "TLorentzVector.h"
19#include "TString.h"
20#include "TVector3.h"
21
22#include <map>
23
24class BmnMwpc : public FairDetector
25{
26 public:
27 // *@param name detector name
28 // *@param active sensitivity flag
29 BmnMwpc(const char* name, Bool_t active);
30
32 virtual ~BmnMwpc();
33
34 // Defines the action to be taken when a step is inside the
35 // active volume. Creates BmnMWPC1Points and adds them to the collection.
36 // @param vol Pointer to the active volume
37 virtual Bool_t ProcessHits(FairVolume* vol = 0);
38
39 // If verbosity level is set, print hit collection at the
40 // end of the event and resets it afterwards.
41 virtual void EndOfEvent();
42
43 // Registers the hit collection in the ROOT manager.
44 virtual void Register();
45
46 // Accessor to the hit collection
47 virtual TClonesArray* GetCollection(Int_t iColl) const;
48
49 // Screen output of hit collection.
50 virtual void Print(Option_t*) const;
51
52 // Clears the hit collection
53 virtual void Reset();
54
55 // *@param cl1 Origin
56 // *@param cl2 Target
57 // *@param offset Index offset
58 virtual void CopyClones(TClonesArray* cl1, TClonesArray* cl2, Int_t offset);
59
60 // Constructs the MWPC1 geometry
61 virtual void ConstructGeometry();
62 // Construct the geometry from an ASCII geometry file
63 virtual void ConstructAsciiGeometry();
64 // Construct the geometry from a GDML geometry file
65 virtual void ConstructGDMLGeometry(TGeoMatrix*);
66 void ExpandNodeForGdml(TGeoNode* node);
67 map<TString, TGeoMedium*> fFixedMedia; // List of media "repaired" after importing GMDL
68
69 // Check whether a volume is sensitive.
70 // The decision is based on the volume name. Only used in case
71 // of GDML and ROOT geometry.
72 // @param name Volume name
73 // @value kTRUE if volume is sensitive, else kFALSE
74 virtual Bool_t CheckIfSensitive(std::string name);
75
76 static Int_t GetWheel(Int_t uid) { return ((uid - 1) >> 3); }; // lsp [0-1] == [inner,outer]
77 static Int_t GetProj(Int_t uid) { return ((uid - 1) & 6) >> 1; }; // lsp [0-3] == [x,y,u,v]
78 static Int_t GetGasGap(Int_t uid) { return ((uid - 1) & 0x0001); }; // lsp [0-1] == [inner,outer]
79
80 private:
81 // Track information to be stored until the track leaves the active volume.
82 Int_t fTrackID;
83 Int_t fVolumeID;
84 TVector3 fPos;
85 TVector3 fPosLocal;
86 TLorentzVector fMom;
87 Double32_t fTime;
88 Double32_t fLength;
89 Double32_t fELoss;
90 Int_t fIsPrimary;
91 Double_t fCharge;
92 Double_t fRadius;
93 Int_t fPdgId;
94 Int_t fwheel;
95 TVector3 fPosIn;
96 TVector3 fPosOut;
97
98 TVector3 fPosInTmp;
99 Int_t fTrackIDTmp;
100 Int_t fwheelTmp;
101
102 Int_t fPosIndex;
103 TClonesArray* fPointCollection;
104
105 int DistAndPoints(TVector3 p3, TVector3 p4, TVector3& pa, TVector3& pb);
106 TVector3 GlobalToLocal(TVector3& global);
107 TVector3 LocalToGlobal(TVector3& local);
108
109 // Adds a BmnMWPC1Point to the HitCollection
110 BmnMwpcPoint* AddHit(Int_t trackID,
111 Int_t detID,
112 TVector3 pos,
113 Double_t radius,
114 TVector3 mom,
115 Double_t time,
116 Double_t length,
117 Double_t eLoss,
118 Int_t isPrimary,
119 Double_t charge,
120 Int_t fPdgId,
121 TVector3 trackPos);
122
123 // Resets the private members for the track parameters
124 void ResetParameters();
125 BmnMwpc(const BmnMwpc&) = delete;
126 BmnMwpc operator=(const BmnMwpc&) = delete;
127
128 ClassDef(BmnMwpc, 1)
129};
130
131//------------------------------------------------------------------------------------------------------------------------
132inline void BmnMwpc::ResetParameters()
133{
134 fTrackID = -1;
135 fVolumeID = fwheel = 0;
136 fPos.SetXYZ(0.0, 0.0, 0.0);
137 fMom.SetXYZM(0.0, 0.0, 0.0, 0.0);
138 fTime = fLength = fELoss = 0;
139 fPosIndex = 0;
140
141 fPosInTmp.SetXYZ(0.0, 0.0, 0.0);
142 fTrackIDTmp = -1;
143 fwheelTmp = -1;
144}
145//------------------------------------------------------------------------------------------------------------------------
146
147#endif
virtual void Register()
virtual void ConstructGDMLGeometry(TGeoMatrix *)
BmnMwpc(const char *name, Bool_t active)
virtual void CopyClones(TClonesArray *cl1, TClonesArray *cl2, Int_t offset)
virtual void Print(Option_t *) const
static Int_t GetProj(Int_t uid)
Definition BmnMwpc.h:77
virtual void ConstructGeometry()
virtual Bool_t ProcessHits(FairVolume *vol=0)
virtual ~BmnMwpc()
static Int_t GetWheel(Int_t uid)
Definition BmnMwpc.h:76
static Int_t GetGasGap(Int_t uid)
Definition BmnMwpc.h:78
virtual void Reset()
virtual void EndOfEvent()
void ExpandNodeForGdml(TGeoNode *node)
virtual Bool_t CheckIfSensitive(std::string name)
map< TString, TGeoMedium * > fFixedMedia
Definition BmnMwpc.h:67
virtual TClonesArray * GetCollection(Int_t iColl) const
virtual void ConstructAsciiGeometry()