#include <RPCHitsTestTool.h>
Definition at line 14 of file RPCHitsTestTool.h.
◆ RPCHitsTestTool()
| RPCHitsTestTool::RPCHitsTestTool |
( |
const std::string & | type, |
|
|
const std::string & | name, |
|
|
const IInterface * | parent ) |
|
inline |
◆ checkIdentifier()
| StatusCode RPCHitsTestTool::checkIdentifier |
( |
Identifier | offid | ) |
|
|
protected |
Definition at line 48 of file RPCHitsTestTool.cxx.
48 {
49
50 const MuonGM::RpcReadoutElement* descriptor =
m_pMuonMgr->getRpcReadoutElement(offid);
51 if (!descriptor) {
53 return StatusCode::FAILURE;
54 }
55
56
58 double rpc_strip_phi = rpc_gPos.phi();
59 if (rpc_strip_phi < 0.) rpc_strip_phi += 2.*
M_PI;
60
61 return StatusCode::SUCCESS;
62}
Amg::Vector3D stripPos(const Identifier &id) const
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 25 of file RPCHitsTestTool.cxx.
25 {
35 int rpc_strip = 1;
36
37
38
39
40 Identifier offid =
m_pRpcIdHelper->channelID(rpc_stname, rpc_steta, rpc_stphi, rpc_dbr, rpc_dbz, rpc_dbp, rpc_gg, rpc_mfi, rpc_strip);
41 if (offid == 0) {
42 ATH_MSG_FATAL(
"RPC : Cannot build a valid Identifier; skip ");
43 }
44
45 return offid;
46}
int GetDoubletPhi(const int &hid) const
static const RpcHitIdHelper * GetHelper(unsigned int nGasGaps=2)
int GetPhiSector(const int &hid) const
int GetDoubletR(const int &hid) const
int GetGasGapLayer(const int &hid) const
int GetMeasuresPhi(const int &hid) const
std::string GetStationName(const int &hid) const
int GetDoubletZ(const int &hid) const
int GetZSector(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 RPCHitsTestTool::initialize |
( |
| ) |
|
|
virtual |
◆ processEvent()
| StatusCode RPCHitsTestTool::processEvent |
( |
| ) |
|
Definition at line 65 of file RPCHitsTestTool.cxx.
65 {
67
68
69
70
71
72
73
74
75
76
78
80 if (evtStore()->
retrieve(p_collection,
"RPC_Hits") == StatusCode::SUCCESS) {
81 for (const RPCSimHit& hit : *p_collection) {
82
83
84 HitID rpchit= (hit).RPCid();
87
88
89
90
91 GeoRPCHit ghit(hit);
92
93 if (!ghit) continue;
96 }
97 }
98 }
99
100 return StatusCode::SUCCESS;
101}
AtlasHitsVector< RPCSimHit > RPCSimHitCollection
◆ 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_DoRPCTest
| bool RPCHitsTestTool::m_DoRPCTest |
|
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_pMuonMgr
◆ m_pRpcIdHelper
◆ 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: