Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
TRTHitAnalysis.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "TRTHitAnalysis.h"
6 
7 // Section of includes for TRT tests
11 
12 #include "TH1.h"
13 #include "TTree.h"
14 #include "TString.h"
15 
16 #include <algorithm>
17 #include <math.h>
18 #include <functional>
19 #include <iostream>
20 
21 TRTHitAnalysis::TRTHitAnalysis(const std::string& name, ISvcLocator* pSvcLocator)
22  : AthAlgorithm(name, pSvcLocator)
23  , m_h_TRT_x(0)
24  , m_h_TRT_y(0)
25  , m_h_TRT_z(0)
26  , m_h_TRT_r(0)
27  , m_h_TRT_xy(0)
28  , m_h_TRT_zr(0)
29  , m_h_TRT_time_photons(0)
30  , m_h_TRT_time_nonphotons(0)
31  , m_h_TRT_edep_photons(0)
32  , m_h_TRT_edep_nonphotons(0)
33  , m_h_TRT_kine_photons(0)
34  , m_h_TRT_kine_nonphotons(0)
35  , m_h_TRT_barcode(0)
36  , m_TRT_x(0)
37  , m_TRT_y(0)
38  , m_TRT_z(0)
39  , m_TRT_r(0)
40  , m_TRT_time_photons(0)
41  , m_TRT_time_nonphotons(0)
42  , m_TRT_edep_photons(0)
43  , m_TRT_edep_nonphotons(0)
44  , m_TRT_kine_photons(0)
45  , m_TRT_kine_nonphotons(0)
46  , m_TRT_barcode(0)
47 
48  , m_tree(0)
49  , m_path("/TRTHitAnalysis/")
50  , m_ntupleFileName("/TRTHitAnalysis/")
51  , m_thistSvc("THistSvc", name)
52 {
53  declareProperty("NtupleFileName", m_ntupleFileName);
54  declareProperty("HistPath", m_path);
55 }
56 
57 
59  ATH_MSG_DEBUG( "Initializing TRTHitAnalysis" );
60 
61  // Grab the Ntuple and histogramming service for the tree
62  CHECK(m_thistSvc.retrieve());
63 
65  m_h_TRT_x = new TH1D("h_TRT_x","hits_x", 100,-1100, 1100);
66  m_h_TRT_x->StatOverflows();
67  CHECK(m_thistSvc->regHist(m_path + m_h_TRT_x->GetName(), m_h_TRT_x));
68 
69  m_h_TRT_y = new TH1D("h_TRT_y", "hits_y", 100,-1100,1100);
70  m_h_TRT_y->StatOverflows();
71  CHECK(m_thistSvc->regHist(m_path + m_h_TRT_y->GetName(), m_h_TRT_y));
72 
73  m_h_TRT_z = new TH1D("h_TRT_z", "hits_z", 100,-3000,3000);
74  m_h_TRT_z->StatOverflows();
75  CHECK(m_thistSvc->regHist(m_path + m_h_TRT_z->GetName(), m_h_TRT_z));
76 
77  m_h_TRT_r = new TH1D("h_TRT_r", "hits_r", 100,500,1100);
78  m_h_TRT_r->StatOverflows();
79  CHECK(m_thistSvc->regHist(m_path + m_h_TRT_r->GetName(), m_h_TRT_r));
80 
81  m_h_TRT_xy = new TH2D("h_TRT_xy", "xy", 100,-1100.,1100.,100, -1100., 1100.);
82  m_h_TRT_xy->StatOverflows();
83  CHECK(m_thistSvc->regHist( m_path+m_h_TRT_xy->GetName(), m_h_TRT_xy));
84 
85  m_h_TRT_zr = new TH2D("h_TRT_zr", "zr", 100,-3000,3000,100,500.,1100.);
86  m_h_TRT_zr->StatOverflows();
87  CHECK(m_thistSvc->regHist( m_path+m_h_TRT_zr->GetName(), m_h_TRT_zr));
88 
89  m_h_TRT_time_photons = new TH1D("h_TRT_time_photons", "hits_time_photons", 100,0,500);
90  m_h_TRT_time_photons->StatOverflows();
92 
93  m_h_TRT_time_nonphotons = new TH1D("h_TRT_time_nonphotons", "hits_time_nonphotons", 100,0,500);
94  m_h_TRT_time_nonphotons->StatOverflows();
96 
97  m_h_TRT_edep_photons = new TH1D("h_TRT_edep_photons", "hits_edep_photons", 100,0,500);
98  m_h_TRT_edep_photons->StatOverflows();
100 
101  m_h_TRT_edep_nonphotons = new TH1D("TRT_edep_nonphotons", "hits_edep_nonphotons", 100,0,500);
102  m_h_TRT_edep_nonphotons->StatOverflows();
104 
105  m_h_TRT_kine_photons = new TH1D("h_TRT_kine_photons", "hits_kine_photons", 100,0,2);
106  m_h_TRT_kine_photons->StatOverflows();
108 
109  m_h_TRT_kine_nonphotons = new TH1D("h_TRT_kine_nonphotons", "hits_kine_nonphotons", 100,0,1000);
110  m_h_TRT_kine_nonphotons->StatOverflows();
112 
113  m_h_TRT_barcode = new TH1D("h_TRT_barcode", "hits_barcode", 100,-500,300000);
114  m_h_TRT_barcode->StatOverflows();
115  CHECK(m_thistSvc->regHist(m_path + m_h_TRT_barcode->GetName(), m_h_TRT_barcode));
116 
118  m_tree = new TTree("TRT","TRT");
119  std::string fullNtupleName = "/" + m_ntupleFileName + "/";
120  CHECK(m_thistSvc->regTree(fullNtupleName,m_tree));
121 
122  if (m_tree) {
123  m_tree->Branch("x", &m_TRT_x);
124  m_tree->Branch("y", &m_TRT_y);
125  m_tree->Branch("z", &m_TRT_z);
126  m_tree->Branch("r", &m_TRT_r);
127  m_tree->Branch("time_photons", &m_TRT_time_photons);
128  m_tree->Branch("time_nonphotons", &m_TRT_time_nonphotons);
129  m_tree->Branch("EnergyDeposit_photons", &m_TRT_edep_photons);
130  m_tree->Branch("EnergyDeposit_nonphotons", &m_TRT_edep_nonphotons);
131  m_tree->Branch("KineticEnergy_photons", &m_TRT_kine_photons);
132  m_tree->Branch("KineticEnergy_nonphotons", &m_TRT_kine_nonphotons);
133  m_tree->Branch("barcode", &m_TRT_barcode);
134  }
135  else {
136  ATH_MSG_ERROR("No tree found!");
137  }
138 
139  ATH_CHECK(detStore()->retrieve(m_detMgr,"TRT"));
140 
141  return StatusCode::SUCCESS;
142 }
143 
144 
146  ATH_MSG_DEBUG( "In TRTHitAnalysis::execute()" );
147 
148  m_TRT_x->clear();
149  m_TRT_y->clear();
150  m_TRT_z->clear();
151  m_TRT_r->clear();
152  m_TRT_time_photons->clear();
153  m_TRT_time_nonphotons->clear();
154  m_TRT_edep_photons->clear();
155  m_TRT_edep_nonphotons->clear();
156  m_TRT_kine_photons->clear();
157  m_TRT_kine_nonphotons->clear();
158  m_TRT_barcode->clear();
159 
160  const TRTUncompressedHitCollection* p_collection;
161  if (evtStore()->retrieve(p_collection, "TRTUncompressedHits") == StatusCode::SUCCESS) {
162  for (TRTUncompressedHitConstIter i_hit = p_collection->begin(); i_hit != p_collection->end(); ++i_hit) {
163  GeoTRTUncompressedHit ghit(*i_hit);
164  HepGeom::Point3D<double> p = ghit.getGlobalPosition(m_detMgr);
165 
166  m_h_TRT_x->Fill(p.x());
167  m_h_TRT_y->Fill(p.y());
168  m_h_TRT_z->Fill(p.z());
169  m_h_TRT_r->Fill(p.perp());
170  m_h_TRT_xy->Fill(p.x(), p.y());
171  m_h_TRT_zr->Fill(p.z(),sqrt(pow(p.x(),2)+pow(p.y(),2)));
172  m_h_TRT_barcode->Fill(HepMC::barcode(i_hit->particleLink()));
173 
174  m_TRT_x->push_back(p.x());
175  m_TRT_y->push_back(p.y());
176  m_TRT_z->push_back(p.z());
177  m_TRT_r->push_back(p.perp());
178  m_TRT_barcode->push_back(HepMC::barcode(i_hit->particleLink()));
179 
180  int particleId(i_hit->GetParticleEncoding());
181  if(particleId == 22 || static_cast<int>(std::abs(particleId)/100000)==41 || static_cast<int>(std::abs(particleId)/10000000)==1) {
182  m_h_TRT_time_photons->Fill(i_hit->GetGlobalTime());
183  m_h_TRT_edep_photons->Fill(i_hit->GetEnergyDeposit());
184  m_h_TRT_kine_photons->Fill(i_hit->GetKineticEnergy());
185  m_TRT_time_photons->push_back(i_hit->GetGlobalTime());
186  m_TRT_edep_photons->push_back(i_hit->GetEnergyDeposit());
187  m_TRT_kine_photons->push_back(i_hit->GetKineticEnergy());
188  }
189  else {
190  m_h_TRT_time_nonphotons->Fill(i_hit->GetGlobalTime());
191  m_h_TRT_edep_nonphotons->Fill(i_hit->GetEnergyDeposit());
192  m_h_TRT_kine_nonphotons->Fill(i_hit->GetKineticEnergy());
193  m_TRT_time_nonphotons->push_back(i_hit->GetGlobalTime());
194  m_TRT_edep_nonphotons->push_back(i_hit->GetEnergyDeposit());
195  m_TRT_kine_nonphotons->push_back(i_hit->GetKineticEnergy());
196  }
197  } // End while hits
198  }
199 
200  if (m_tree) m_tree->Fill();
201 
202  return StatusCode::SUCCESS;
203 }
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
TRTHitAnalysis::m_TRT_z
std::vector< float > * m_TRT_z
Definition: TRTHitAnalysis.h:56
TRTHitAnalysis::m_TRT_time_nonphotons
std::vector< float > * m_TRT_time_nonphotons
Definition: TRTHitAnalysis.h:59
TRT_DetectorManager.h
TRTHitAnalysis::m_h_TRT_r
TH1 * m_h_TRT_r
Definition: TRTHitAnalysis.h:43
GeoTRTUncompressedHit::getGlobalPosition
HepGeom::Point3D< double > getGlobalPosition(const InDetDD::TRT_DetectorManager *mgr) const
TRTHitAnalysis::m_h_TRT_kine_photons
TH1 * m_h_TRT_kine_photons
Definition: TRTHitAnalysis.h:50
AthCommonDataStore< AthCommonMsg< Algorithm > >::declareProperty
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
Definition: AthCommonDataStore.h:145
TRTHitAnalysis::m_h_TRT_x
TH1 * m_h_TRT_x
Some variables.
Definition: TRTHitAnalysis.h:40
AtlasHitsVector
Definition: AtlasHitsVector.h:33
TRTHitAnalysis::m_h_TRT_barcode
TH1 * m_h_TRT_barcode
Definition: TRTHitAnalysis.h:52
GeoTRTUncompressedHit.h
TRTHitAnalysis::m_h_TRT_time_nonphotons
TH1 * m_h_TRT_time_nonphotons
Definition: TRTHitAnalysis.h:47
AtlasHitsVector::begin
const_iterator begin() const
Definition: AtlasHitsVector.h:131
TRTHitAnalysis::m_TRT_kine_nonphotons
std::vector< float > * m_TRT_kine_nonphotons
Definition: TRTHitAnalysis.h:63
TRTHitAnalysis::m_TRT_x
std::vector< float > * m_TRT_x
Definition: TRTHitAnalysis.h:54
AthCommonDataStore< AthCommonMsg< Algorithm > >::detStore
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:95
AthCommonDataStore< AthCommonMsg< Algorithm > >::evtStore
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:85
TRTHitAnalysis.h
python.utils.AtlRunQueryDQUtils.p
p
Definition: AtlRunQueryDQUtils.py:210
TRTHitAnalysis::m_TRT_barcode
std::vector< float > * m_TRT_barcode
Definition: TRTHitAnalysis.h:64
TRTHitAnalysis::m_ntupleFileName
std::string m_ntupleFileName
Definition: TRTHitAnalysis.h:68
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
TRTHitAnalysis::m_thistSvc
ServiceHandle< ITHistSvc > m_thistSvc
Definition: TRTHitAnalysis.h:69
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
TRTHitAnalysis::m_h_TRT_z
TH1 * m_h_TRT_z
Definition: TRTHitAnalysis.h:42
HepMC::barcode
int barcode(const T *p)
Definition: Barcode.h:16
TRTHitAnalysis::m_TRT_y
std::vector< float > * m_TRT_y
Definition: TRTHitAnalysis.h:55
m_path
std::string m_path
the path being used
Definition: OutputStreamData.cxx:88
TRTUncompressedHitConstIter
AtlasHitsVector< TRTUncompressedHit >::const_iterator TRTUncompressedHitConstIter
Definition: TRTUncompressedHitCollection.h:18
TRTHitAnalysis::initialize
virtual StatusCode initialize() override
Definition: TRTHitAnalysis.cxx:58
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
TRTHitAnalysis::m_tree
TTree * m_tree
Definition: TRTHitAnalysis.h:66
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
TRTHitAnalysis::m_h_TRT_edep_nonphotons
TH1 * m_h_TRT_edep_nonphotons
Definition: TRTHitAnalysis.h:49
AthAlgorithm
Definition: AthAlgorithm.h:47
TRTHitAnalysis::m_h_TRT_xy
TH2 * m_h_TRT_xy
Definition: TRTHitAnalysis.h:44
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
TRTHitAnalysis::m_h_TRT_zr
TH2 * m_h_TRT_zr
Definition: TRTHitAnalysis.h:45
TRTHitAnalysis::m_TRT_kine_photons
std::vector< float > * m_TRT_kine_photons
Definition: TRTHitAnalysis.h:62
TRTHitAnalysis::TRTHitAnalysis
TRTHitAnalysis(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TRTHitAnalysis.cxx:21
TRTHitAnalysis::m_detMgr
const InDetDD::TRT_DetectorManager * m_detMgr
Definition: TRTHitAnalysis.h:70
TRTUncompressedHitCollection.h
TRTHitAnalysis::execute
virtual StatusCode execute() override
Definition: TRTHitAnalysis.cxx:145
TRTHitAnalysis::m_TRT_edep_nonphotons
std::vector< float > * m_TRT_edep_nonphotons
Definition: TRTHitAnalysis.h:61
AtlasHitsVector::end
const_iterator end() const
Definition: AtlasHitsVector.h:134
GeoTRTUncompressedHit
This adaptor class allows TRT_UncompressedHits to behave as if they knew which detector they were in.
Definition: GeoTRTUncompressedHit.h:23
TRTHitAnalysis::m_h_TRT_kine_nonphotons
TH1 * m_h_TRT_kine_nonphotons
Definition: TRTHitAnalysis.h:51
TRTHitAnalysis::m_h_TRT_edep_photons
TH1 * m_h_TRT_edep_photons
Definition: TRTHitAnalysis.h:48
TRTHitAnalysis::m_h_TRT_time_photons
TH1 * m_h_TRT_time_photons
Definition: TRTHitAnalysis.h:46
TRTHitAnalysis::m_TRT_r
std::vector< float > * m_TRT_r
Definition: TRTHitAnalysis.h:57
pow
constexpr int pow(int base, int exp) noexcept
Definition: ap_fixedTest.cxx:15
TRTHitAnalysis::m_TRT_edep_photons
std::vector< float > * m_TRT_edep_photons
Definition: TRTHitAnalysis.h:60
TRTHitAnalysis::m_path
std::string m_path
Definition: TRTHitAnalysis.h:67
TRTHitAnalysis::m_TRT_time_photons
std::vector< float > * m_TRT_time_photons
Definition: TRTHitAnalysis.h:58
TRTHitAnalysis::m_h_TRT_y
TH1 * m_h_TRT_y
Definition: TRTHitAnalysis.h:41