ATLAS Offline Software
Loading...
Searching...
No Matches
Trk::EnergyLossMonitor Class Reference

This validation tool Energy states of partlices. More...

#include <EnergyLossMonitor.h>

Inheritance diagram for Trk::EnergyLossMonitor:
Collaboration diagram for Trk::EnergyLossMonitor:

Public Member Functions

 EnergyLossMonitor (const std::string &, const std::string &, const IInterface *)
 standard AlgTool constructor / destructor
 ~EnergyLossMonitor ()
StatusCode initialize ()
 standard Athena methods
StatusCode finalize ()
virtual void initializeTrack (double p, double E, double eta, double phi)
 Initialize State.
virtual void recordTrackState (const Amg::Vector3D &pos, const Amg::Vector3D &mom, double mass)
 Record a single TrackState.
virtual void finalizeTrack ()
 Finalization State.
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysInitialize () override
 Perform system initialization for an algorithm.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Static Public Member Functions

static const InterfaceID & interfaceID ()
 Interface ID, declared here, and defined below.

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ServiceHandle< INTupleSvc > m_ntupleSvc
 Ntuple Business.
std::string m_outputNtuplePath
std::string m_outputNtupleDescription
int m_currentStep
 Ntuple helper.
NTuple::Item< long > m_steps
 Step variables.
NTuple::Item< float > m_initialP
 Initial variables.
NTuple::Item< float > m_initialE
NTuple::Item< float > m_initialEta
NTuple::Item< float > m_initialPhi
NTuple::Array< float > m_p
NTuple::Array< float > m_E
NTuple::Array< float > m_eta
NTuple::Array< float > m_phi
NTuple::Array< float > m_hitX
NTuple::Array< float > m_hitY
NTuple::Array< float > m_hitR
NTuple::Array< float > m_hitZ
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

This validation tool Energy states of partlices.

Author
Sebas.nosp@m.tian.nosp@m..Flei.nosp@m.schm.nosp@m.ann@c.nosp@m.ern..nosp@m.ch

Definition at line 27 of file EnergyLossMonitor.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< AlgTool > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ EnergyLossMonitor()

Trk::EnergyLossMonitor::EnergyLossMonitor ( const std::string & t,
const std::string & n,
const IInterface * p )

standard AlgTool constructor / destructor

Definition at line 17 of file EnergyLossMonitor.cxx.

17 :
18 AthAlgTool(t,n,p),
19 m_ntupleSvc("NTupleSvc", n),
20 m_outputNtuplePath("/NTUPLES/FILE1/EnergyLossMonitor/SingleTrackEnergyLoss"),
21 m_outputNtupleDescription("Output of the Trk::EnergyLossMonitor AlgTool"),
23{
24 declareInterface<IEnergyLossMonitor>(this);
26 declareProperty("NtupleDescription", m_outputNtupleDescription);
27}
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
std::string m_outputNtupleDescription
ServiceHandle< INTupleSvc > m_ntupleSvc
Ntuple Business.
int m_currentStep
Ntuple helper.

◆ ~EnergyLossMonitor()

Trk::EnergyLossMonitor::~EnergyLossMonitor ( )
inline

Definition at line 32 of file EnergyLossMonitor.h.

32{}

Member Function Documentation

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ finalize()

StatusCode Trk::EnergyLossMonitor::finalize ( )

Definition at line 69 of file EnergyLossMonitor.cxx.

70{
71 ATH_MSG_DEBUG("finalize() successful");
72 return StatusCode::SUCCESS;
73}
#define ATH_MSG_DEBUG(x)

◆ finalizeTrack()

void Trk::EnergyLossMonitor::finalizeTrack ( )
virtual

Finalization State.

Implements Trk::IEnergyLossMonitor.

Definition at line 108 of file EnergyLossMonitor.cxx.

109{
112 if (sc.isFailure()){
113 ATH_MSG_WARNING( "Couldn't write ntuple record!" );
114 }
115}
#define ATH_MSG_WARNING(x)
static Double_t sc
NTuple::Item< long > m_steps
Step variables.
::StatusCode StatusCode
StatusCode definition for legacy code.

◆ initialize()

StatusCode Trk::EnergyLossMonitor::initialize ( )

standard Athena methods

Definition at line 31 of file EnergyLossMonitor.cxx.

32{
33 // Retrieve the NTuple Service
34 ATH_CHECK( m_ntupleSvc.retrieve() );
35 NTuplePtr ntr(m_ntupleSvc.get(), m_outputNtuplePath);
37 if (!ntr) {
38 ntr = m_ntupleSvc->book(m_outputNtuplePath, CLID_ColumnWiseTuple, m_outputNtupleDescription);
39 }
40 if (ntr){
41 sc = ntr->addItem("Steps", m_steps, 0, 5000);
42 // Initial paramters
43 sc = ntr->addItem("InitialP", m_initialP, 0., 1000000.);
44 sc = ntr->addItem("InitialE", m_initialE, 0., 1000000.);
45 sc = ntr->addItem("InitialEta", m_initialEta, -4., 4.);
46 sc = ntr->addItem("InitialPhi", m_initialPhi, -4., 4.);
47 // kinematics
48 sc = ntr->addItem("Eta", m_steps, m_eta);
49 sc = ntr->addItem("Phi", m_steps, m_phi);
50 // Beam Pipe
51 sc = ntr->addItem("Energy", m_steps, m_E);
52 sc = ntr->addItem("Momentum", m_steps, m_p);
53 sc = ntr->addItem("Eta", m_steps, m_eta);
54 sc = ntr->addItem("Phi", m_steps, m_phi);
55 sc = ntr->addItem("MaterialHitX", m_steps, m_hitX);
56 sc = ntr->addItem("MaterialHitY", m_steps, m_hitY);
57 sc = ntr->addItem("MaterialHitZ", m_steps, m_hitZ);
58 sc = ntr->addItem("MaterialHitR", m_steps, m_hitR);
59
60 } else {
61 ATH_MSG_ERROR( "Ntuple booking failed!" );
62 return StatusCode::FAILURE;
63 }
64 ATH_MSG_DEBUG("initialize() successful" );
65 return sc;
66}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
NTuple::Item< float > m_initialE
NTuple::Array< float > m_hitX
NTuple::Array< float > m_phi
NTuple::Array< float > m_hitR
NTuple::Array< float > m_hitY
NTuple::Array< float > m_p
NTuple::Item< float > m_initialEta
NTuple::Item< float > m_initialP
Initial variables.
NTuple::Array< float > m_hitZ
NTuple::Array< float > m_eta
NTuple::Item< float > m_initialPhi
NTuple::Array< float > m_E

◆ initializeTrack()

void Trk::EnergyLossMonitor::initializeTrack ( double p,
double E,
double eta,
double phi )
virtual

Initialize State.

Implements Trk::IEnergyLossMonitor.

Definition at line 76 of file EnergyLossMonitor.cxx.

80{
81 m_initialP = p;
82 m_initialE = E;
85 m_currentStep = 0;
86}
Scalar eta() const
pseudorapidity method
@ phi
Definition ParamDefs.h:75

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ interfaceID()

const InterfaceID & Trk::IEnergyLossMonitor::interfaceID ( )
inlinestaticinherited

Interface ID, declared here, and defined below.

Definition at line 47 of file IEnergyLossMonitor.h.

47 {
49 }
static const InterfaceID IID_IEnergyLossMonitor("IEnergyLossMonitor", 1, 0)

◆ msg()

MsgStream & AthCommonMsg< AlgTool >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< AlgTool >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ recordTrackState()

void Trk::EnergyLossMonitor::recordTrackState ( const Amg::Vector3D & pos,
const Amg::Vector3D & mom,
double mass )
virtual

Record a single TrackState.

Implements Trk::IEnergyLossMonitor.

Definition at line 88 of file EnergyLossMonitor.cxx.

91{
92
93 // Geant4 first step protection
94 if (pos.mag() > 0.01 && m_currentStep < 5000){
95 double p = mom.mag();
96 m_E[m_currentStep] = sqrt(p*p+mass*mass);
98 m_eta[m_currentStep] = mom.eta();
99 m_phi[m_currentStep] = mom.phi();
100 m_hitX[m_currentStep] = pos.x();
101 m_hitY[m_currentStep] = pos.y();
102 m_hitZ[m_currentStep] = pos.z();
103 m_hitR[m_currentStep] = pos.perp();
105 }
106}

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< AlgTool > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ sysInitialize()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysInitialize ( )
overridevirtualinherited

Perform system initialization for an algorithm.

We override this to declare all the elements of handle key arrays at the end of initialization. See comments on updateVHKA.

Reimplemented in asg::AsgMetadataTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and DerivationFramework::CfAthAlgTool.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_currentStep

int Trk::EnergyLossMonitor::m_currentStep
private

Ntuple helper.

Definition at line 59 of file EnergyLossMonitor.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_E

NTuple::Array<float> Trk::EnergyLossMonitor::m_E
private

Definition at line 70 of file EnergyLossMonitor.h.

◆ m_eta

NTuple::Array<float> Trk::EnergyLossMonitor::m_eta
private

Definition at line 71 of file EnergyLossMonitor.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_hitR

NTuple::Array<float> Trk::EnergyLossMonitor::m_hitR
private

Definition at line 75 of file EnergyLossMonitor.h.

◆ m_hitX

NTuple::Array<float> Trk::EnergyLossMonitor::m_hitX
private

Definition at line 73 of file EnergyLossMonitor.h.

◆ m_hitY

NTuple::Array<float> Trk::EnergyLossMonitor::m_hitY
private

Definition at line 74 of file EnergyLossMonitor.h.

◆ m_hitZ

NTuple::Array<float> Trk::EnergyLossMonitor::m_hitZ
private

Definition at line 76 of file EnergyLossMonitor.h.

◆ m_initialE

NTuple::Item<float> Trk::EnergyLossMonitor::m_initialE
private

Definition at line 65 of file EnergyLossMonitor.h.

◆ m_initialEta

NTuple::Item<float> Trk::EnergyLossMonitor::m_initialEta
private

Definition at line 66 of file EnergyLossMonitor.h.

◆ m_initialP

NTuple::Item<float> Trk::EnergyLossMonitor::m_initialP
private

Initial variables.

Definition at line 64 of file EnergyLossMonitor.h.

◆ m_initialPhi

NTuple::Item<float> Trk::EnergyLossMonitor::m_initialPhi
private

Definition at line 67 of file EnergyLossMonitor.h.

◆ m_ntupleSvc

ServiceHandle<INTupleSvc> Trk::EnergyLossMonitor::m_ntupleSvc
private

Ntuple Business.

Definition at line 54 of file EnergyLossMonitor.h.

◆ m_outputNtupleDescription

std::string Trk::EnergyLossMonitor::m_outputNtupleDescription
private

Definition at line 56 of file EnergyLossMonitor.h.

◆ m_outputNtuplePath

std::string Trk::EnergyLossMonitor::m_outputNtuplePath
private

Definition at line 55 of file EnergyLossMonitor.h.

◆ m_p

NTuple::Array<float> Trk::EnergyLossMonitor::m_p
private

Definition at line 69 of file EnergyLossMonitor.h.

◆ m_phi

NTuple::Array<float> Trk::EnergyLossMonitor::m_phi
private

Definition at line 72 of file EnergyLossMonitor.h.

◆ m_steps

NTuple::Item<long> Trk::EnergyLossMonitor::m_steps
private

Step variables.

Definition at line 62 of file EnergyLossMonitor.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< AlgTool > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< AlgTool > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: