#include <MDTHitsTestTool.h>
Definition at line 15 of file MDTHitsTestTool.h.
◆ MDTHitsTestTool()
| MDTHitsTestTool::MDTHitsTestTool |
( |
const std::string & | type, |
|
|
const std::string & | name, |
|
|
const IInterface * | parent ) |
|
inline |
◆ checkIdentifier()
| StatusCode MDTHitsTestTool::checkIdentifier |
( |
Identifier | offid | ) |
|
|
protected |
Definition at line 60 of file MDTHitsTestTool.cxx.
60 {
61 const MuonGM::MdtReadoutElement* descriptor =
m_pMuonMgr->getMdtReadoutElement(offid);
62 if (descriptor == NULL) {
64 return StatusCode::FAILURE;
65 }
66
67
69
70 double mdt_tube_phi = mdt_gPos.phi();
71 if (mdt_tube_phi < 0.) mdt_tube_phi += 2.*
M_PI;
72
73
74
75
76
77
78
79 return StatusCode::SUCCESS;
80}
Amg::Vector3D tubePos(const Identifier &id) const
Returns the global position of the given tube.
Eigen::Matrix< double, 3, 1 > Vector3D
◆ executeCheckEventInfo()
| StatusCode MuonHitTestToolBase::executeCheckEventInfo |
( |
| ) |
|
|
protectedinherited |
Definition at line 35 of file MuonHitTestToolBase.cxx.
36{
37 SG::ReadHandle<xAOD::EventInfo> eventInfo (
m_eventInfoKey,Gaudi::Hive::currentContext());
40 int numrun = eventInfo->runNumber();
41 ATH_MSG_VERBOSE(
"Processing EventInfo event #"<< evt<<
" run: " << numrun);
46
47
48 if (mcEvent->
size()!=1) {
50 return StatusCode::SUCCESS;
51 }
52
53
54
56 for (e=mcEvent->
begin();e!=mcEvent->
end(); ++e) {
57 for (auto p: (**e)) {
63 break;
64 }
65 }
66 }
67 return StatusCode::SUCCESS;
68}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_VERBOSE(x)
#define CHECK(...)
Evaluate an expression and check for errors.
DataModel_detail::const_iterator< DataVector > const_iterator
Standard const_iterator.
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
bool is_simulation_particle(const T &p)
Method to establish if a particle (or barcode) was created during the simulation (TODO update to be s...
retrieve(aClass, aKey=None)
◆ executeFillHistos()
| StatusCode MuonHitTestToolBase::executeFillHistos |
( |
const Amg::Vector3D & | u | ) |
|
|
protectedinherited |
for MDTs that have barrel + endcap section, take only the barrel when plotting the xy-2d plot of the detector
Definition at line 70 of file MuonHitTestToolBase.cxx.
70 {
72
74
77 }
78
79 double rad=sqrt(
u.x()*
u.x()+
u.y()*
u.y());
82
83
84
85
86
87
88
89
90
91
95
98 }
99 else {
104 }
105
106 return StatusCode::SUCCESS;
107}
@ u
Enums for curvilinear frames.
◆ executeFillHistos_sTGc()
| StatusCode MuonHitTestToolBase::executeFillHistos_sTGc |
( |
const Amg::Vector3D & | , |
|
|
std::string | ) |
|
protectedinherited |
◆ executeFillHistosSectors_Wedge1()
| StatusCode MuonHitTestToolBase::executeFillHistosSectors_Wedge1 |
( |
const Amg::Vector3D & | , |
|
|
std::string | ) |
|
protectedinherited |
◆ executeFillHistosSectors_Wedge2()
| StatusCode MuonHitTestToolBase::executeFillHistosSectors_Wedge2 |
( |
const Amg::Vector3D & | , |
|
|
std::string | ) |
|
protectedinherited |
◆ getIdentifier()
Definition at line 38 of file MDTHitsTestTool.cxx.
39{
45 int mdt_tl = mdthelper->
GetLayer(mdthit);
46 int mdt_tube = mdthelper->
GetTube(mdthit);
47
48
49
50
51 Identifier offid =
m_pMdtIdHelper->channelID(mdt_stname, mdt_steta, mdt_stphi,mdt_ml,mdt_tl,mdt_tube);
52 if (offid == 0){
54 }
55
57 return offid;
58}
static const MdtHitIdHelper * GetHelper(unsigned int nTubes=78)
int GetPhiSector(const int &hid) const
int GetMultiLayer(const int &hid) const
std::string GetStationName(const int &hid) const
int GetZSector(const int &hid) const
int GetLayer(const int &hid) const
int GetTube(const int &hid) const
◆ getPrimary()
Definition at line 20 of file SimTestToolBase.cxx.
21{
25 for (e=mcCollection->
begin();e!=mcCollection->
end(); ++e) {
26 for (auto p : (**e)) {
29 }
30 }
31 }
32 }
33 return 0;
34}
◆ initialize()
| StatusCode MDTHitsTestTool::initialize |
( |
| ) |
|
|
virtual |
◆ processEvent()
| StatusCode MDTHitsTestTool::processEvent |
( |
| ) |
|
Definition at line 82 of file MDTHitsTestTool.cxx.
82 {
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
104 if (evtStore()->
retrieve(p_collection,
"MDT_Hits") == StatusCode::SUCCESS) {
105 for (const MDTSimHit& hit : *p_collection) {
106
107
108 HitID mdthit= (hit).MDTid();
111
112
113
114
115
116
117 GeoMDTHit ghit(hit);
118 if (!ghit) continue;
121 }
122 }
123 }
124
125 return StatusCode::SUCCESS;
126}
AtlasHitsVector< MDTSimHit > MDTSimHitCollection
◆ m_BarrelEtaCut
| double MuonHitTestToolBase::m_BarrelEtaCut |
|
protectedinherited |
MDT barrel eta cut, applicable to the MDT 2D cross section plot.
Definition at line 44 of file MuonHitTestToolBase.h.
◆ m_detBarrel
| TH2* MuonHitTestToolBase::m_detBarrel |
|
protectedinherited |
◆ m_detname
| std::string MuonHitTestToolBase::m_detname |
|
protectedinherited |
◆ m_direction
◆ m_DoMDTTest
| bool MDTHitsTestTool::m_DoMDTTest |
|
private |
◆ m_eta
| TH1* MuonHitTestToolBase::m_eta |
|
protectedinherited |
◆ m_eventInfoKey
◆ m_histSvc
| ServiceHandle<ITHistSvc> SimTestHisto::m_histSvc {"THistSvc", "SimTestHisto"} |
|
protectedinherited |
◆ m_key
| std::string SimTestToolBase::m_key |
|
protectedinherited |
◆ m_longView
| TH2 * MuonHitTestToolBase::m_longView |
|
protectedinherited |
◆ m_muondetBarrel
| TH2* MuonHitTestToolBase::m_muondetBarrel |
|
protectedinherited |
◆ m_muoneta
| TH1* MuonHitTestToolBase::m_muoneta |
|
protectedinherited |
◆ m_muonevnt
| TH1* MuonHitTestToolBase::m_muonevnt |
|
protectedinherited |
◆ m_muonlongView
| TH2 * MuonHitTestToolBase::m_muonlongView |
|
protectedinherited |
◆ m_muonphi
| TH1 * MuonHitTestToolBase::m_muonphi |
|
protectedinherited |
◆ m_muonphiResid
| TH1 * MuonHitTestToolBase::m_muonphiResid |
|
protectedinherited |
◆ m_muonrun
| TH1 * MuonHitTestToolBase::m_muonrun |
|
protectedinherited |
◆ m_muontheta
| TH1 * MuonHitTestToolBase::m_muontheta |
|
protectedinherited |
◆ m_muonzResid
| TH1* MuonHitTestToolBase::m_muonzResid |
|
protectedinherited |
◆ m_path
| std::string SimTestHisto::m_path {"/truth/"} |
|
protectedinherited |
◆ m_phi
| TH1 * MuonHitTestToolBase::m_phi |
|
protectedinherited |
◆ m_phiResid
| TH1 * MuonHitTestToolBase::m_phiResid |
|
protectedinherited |
◆ m_pMdtIdHelper
◆ m_pMuonMgr
◆ m_theta
| TH1 * MuonHitTestToolBase::m_theta |
|
protectedinherited |
◆ m_zResid
| TH1* MuonHitTestToolBase::m_zResid |
|
protectedinherited |
The documentation for this class was generated from the following files: