ATLAS Offline Software
Loading...
Searching...
No Matches
LVL1::jTowerMakerFromJfexTowers Class Reference

#include <jTowerMakerFromJfexTowers.h>

Inheritance diagram for LVL1::jTowerMakerFromJfexTowers:
Collaboration diagram for LVL1::jTowerMakerFromJfexTowers:

Public Member Functions

 jTowerMakerFromJfexTowers (const std::string &name, ISvcLocator *pSvcLocator)
 ~jTowerMakerFromJfexTowers ()=default
virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &ctx) const override
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) const
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 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

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

SG::ReadHandleKey< xAOD::jFexTowerContainerm_DataTowerKey {this, "InputDataTowers", "L1_jFexDataTowers", "jfexTowers (use L1_jFexEmulatedTowers for built from SC, or L1_jFexDataTowers for efex readout"}
SG::ReadHandleKey< xAOD::jFexTowerContainerm_EmulTowerKey {this, "InputEmulatedTowers", "L1_jFexEmulatedTowers", "If specified, will fallback to this collection of towers if the first collection is incomplete/empty"}
Gaudi::Property< bool > m_UseEmulated {this, "UseEmulated", true, "It switches off the CaloCell -> Jtower path. It uses instead L1_jFexDataTowers and L1_jFexEmulatedTowers "}
Gaudi::Property< bool > m_isMC {this, "IsMC", false, "Is used to know when we run on data. So L1_jFexDataTowers can be present"}
SG::WriteHandleKey< LVL1::jTowerContainerm_jTowerContainerSGKey {this, "MyJTowers", "jTowerContainer", "MyJTowers"}
ToolHandle< IjTowerBuilderm_jTowerBuilderTool {this, "jTowerBuilderTool", "LVL1::jTowerBuilder", "Tool that builds jTowers for simulation"}
ToolHandle< IjSuperCellTowerMapperm_jSuperCellTowerMapperTool {this, "jSuperCellTowerMapperTool", "LVL1::jSuperCellTowerMapper", "Tool that maps supercells to jTowers"}
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
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

Definition at line 23 of file jTowerMakerFromJfexTowers.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ jTowerMakerFromJfexTowers()

LVL1::jTowerMakerFromJfexTowers::jTowerMakerFromJfexTowers ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 31 of file jTowerMakerFromJfexTowers.cxx.

32 : AthReentrantAlgorithm(name, pSvcLocator)
33{}

◆ ~jTowerMakerFromJfexTowers()

LVL1::jTowerMakerFromJfexTowers::~jTowerMakerFromJfexTowers ( )
default

Member Function Documentation

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

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

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode LVL1::jTowerMakerFromJfexTowers::execute ( const EventContext & ctx) const
overridevirtual

Definition at line 51 of file jTowerMakerFromJfexTowers.cxx.

52{
53 ATH_MSG_DEBUG("Executing " << name() << ", processing event number " );
54
55 //Reading the decoded Data jTower container
56 SG::ReadHandle<xAOD::jFexTowerContainer> jDataTowerContainer;
57 bool jDataTowerFilled = false;
58 if(!m_isMC){
59 jDataTowerContainer = SG::ReadHandle<xAOD::jFexTowerContainer>(m_DataTowerKey, ctx);
60 if(!jDataTowerContainer.isValid()) {
61 ATH_MSG_ERROR("Could not retrieve collection " << jDataTowerContainer.key() );
62 return StatusCode::FAILURE;
63 }
64 jDataTowerFilled = !jDataTowerContainer->empty();
65 }
66
67 //Reading the Emulated jTower container
68 SG::ReadHandle<xAOD::jFexTowerContainer> jEmulatedTowerContainer;
69
70 if(m_UseEmulated){
71 jEmulatedTowerContainer = SG::ReadHandle<xAOD::jFexTowerContainer>(m_EmulTowerKey, ctx);
72 if(!jEmulatedTowerContainer.isValid()) {
73 ATH_MSG_ERROR("Could not retrieve collection " << jEmulatedTowerContainer.key() );
74 return StatusCode::FAILURE;
75 }
76 }
77
78
79 // STEP 0 - Make a fresh local jTowerContainer
80 std::unique_ptr<jTowerContainer> local_jTowerContainerRaw = std::make_unique<jTowerContainer>();
81
82 // STEP 1 - Make some jTowers and fill the local container (This is the one the simulation reads)
83 m_jTowerBuilderTool->init(local_jTowerContainerRaw);
84
85 // STEP 2 - Mapping jFexTowers with decoded Energies
86 if( jDataTowerFilled || m_UseEmulated ) {
87
88 SG::ReadHandle<xAOD::jFexTowerContainer> * data_jTowerContainer;
89
90 if(m_UseEmulated && !jDataTowerFilled){
91 data_jTowerContainer = &jEmulatedTowerContainer;
92 }
93 else{
94 data_jTowerContainer = &jDataTowerContainer;
95 }
96
97 ATH_MSG_DEBUG("Collection used to build the jTower for simulation: " << (*data_jTowerContainer).key() << " with size: "<<(*data_jTowerContainer)->size());
98
99 for(const xAOD::jFexTower* my_jTower : *(*data_jTowerContainer) ) {
100
101 unsigned int TTID = my_jTower->jFEXtowerID();
102
103 LVL1::jTower *targetTower;
104 if( (targetTower = local_jTowerContainerRaw->findTower(TTID)) ) {
105
106 targetTower->setiEta( my_jTower->globalEta() );
107 targetTower->setiPhi( my_jTower->globalPhi() );
108 targetTower->setCentreEta( my_jTower->eta() );
109 targetTower->setCentrePhi( my_jTower->phi() );
110 targetTower->setOnlineID( my_jTower->OnlineID() );
111
112 uint8_t source = my_jTower->Calosource(); // Values: EMB:0 Tile:1 EMEC:2 HEC:3 FCAL1:4 FCAL2:5 FCAL3:6
113
114 // Set up for Tile energies
115 if(source == 1) {
116 // Always in the hadronic layer = 1
117 targetTower->set_Et(1,(my_jTower->et_count()).at(0)*500);// conversion factor of 500
118
119 //setting the saturaion
120 if( (my_jTower->isjTowerSat()).at(0) ) targetTower->setHADSat();
121 }
122 else { //Now we do LATOME
123
124 int layer = 1; // Hadronic layer
125 if(source == 0 or source == 2 or source == 4 ) layer = 0; // Electromagnetic layer
126
127 // LATOME encoded Et needs to be converted to MeV
128 targetTower->set_Et(layer, jFEXCompression::Expand( (my_jTower->et_count()).at(0) ) );
129
130 //Setting the saturation
131 if( (my_jTower->isjTowerSat()).at(0) ){
132 if( layer == 1 ){
133 targetTower->setHADSat();
134 }
135 else{
136 targetTower->setEMSat();
137 }
138 }
139 }
140 }
141 else {
142 ATH_MSG_ERROR("Tower ID is officially unknown - it will be ignored. (Needs investigation). Please report this!" );
143 continue;
144 }
145 }
146 }
147 else{
148 ATH_MSG_ERROR("Falling into the legacy path. This should never happen!. Use EmulatedTowers or DataTowers - Contact L1Calo offline experts");
149 return StatusCode::FAILURE;
150
151 // Prefer to keep this for debugging purposes - Experts only
152 // It does reconstruct the jTowers using eta/phi coordinates and internal parameters from the CaloCell and TriggerTower containers.
153 // EmulatedTowers and DataTowers are xAOD objects, so they can saved into an AOD file.
154 ATH_CHECK(m_jSuperCellTowerMapperTool->AssignSuperCellsToTowers(local_jTowerContainerRaw));
155 ATH_CHECK(m_jSuperCellTowerMapperTool->AssignTriggerTowerMapper(local_jTowerContainerRaw));
156 }
157
158 // STEP 3 - Once coordinates energies and all are filled, then we fill pileup and noise values
159 ATH_CHECK(m_jTowerBuilderTool->AssignPileupAndNoiseValues(local_jTowerContainerRaw));
160
161 // STEP 4 - Write the completed jTowerContainer into StoreGate (move the local copy in memory)
162 SG::WriteHandle<LVL1::jTowerContainer> jTowerContainerSG(m_jTowerContainerSGKey, ctx);
163 ATH_CHECK(jTowerContainerSG.record(std::move( local_jTowerContainerRaw ) ) );
164
165 // STEP 5 - Close and clean the event
166 m_jTowerBuilderTool->reset();
167
168 return StatusCode::SUCCESS;
169}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
static int Expand(unsigned int code)
Uncompress data.
SG::ReadHandleKey< xAOD::jFexTowerContainer > m_EmulTowerKey
SG::WriteHandleKey< LVL1::jTowerContainer > m_jTowerContainerSGKey
SG::ReadHandleKey< xAOD::jFexTowerContainer > m_DataTowerKey
ToolHandle< IjSuperCellTowerMapper > m_jSuperCellTowerMapperTool
ToolHandle< IjTowerBuilder > m_jTowerBuilderTool
void setiEta(int ieta)
Definition jTower.cxx:299
void set_Et(int layer, int et)
Set ET value in MeV.
Definition jTower.cxx:100
void setHADSat()
Definition jTower.h:58
void setiPhi(int iphi)
Definition jTower.cxx:309
void setCentrePhi(float iphi)
Definition jTower.cxx:303
void setEMSat()
set and get saturation
Definition jTower.h:55
void setOnlineID(int tower_id_online)
Definition jTower.cxx:313
void setCentreEta(float ieta)
Add to eta/phi values of a specified tower.
Definition jTower.cxx:295
virtual bool isValid() override final
Can the handle be successfully dereferenced?
virtual const std::string & key() const override final
Return the StoreGate ID for the referenced object.
@ layer
Definition HitInfo.h:79
jFexTower_v1 jFexTower
Define the latest version of the TriggerTower class.
Definition jFexTower.h:15

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ initialize()

StatusCode LVL1::jTowerMakerFromJfexTowers::initialize ( )
overridevirtual

Definition at line 36 of file jTowerMakerFromJfexTowers.cxx.

37{
38 ATH_MSG_DEBUG("isMC: " << m_isMC );
39 ATH_MSG_DEBUG("UseEmulated: " << m_UseEmulated );
40 ATH_CHECK( m_DataTowerKey.initialize(!m_isMC) );
43 ATH_CHECK( m_jTowerBuilderTool.retrieve() );
44 ATH_CHECK( m_jTowerContainerSGKey.initialize() );
45
46 return StatusCode::SUCCESS;
47
48}

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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.

◆ isClonable()

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::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< Gaudi::Algorithm > >::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.

◆ 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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
#define ATH_MSG_WARNING(x)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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 }

Member Data Documentation

◆ m_DataTowerKey

SG::ReadHandleKey<xAOD::jFexTowerContainer> LVL1::jTowerMakerFromJfexTowers::m_DataTowerKey {this, "InputDataTowers", "L1_jFexDataTowers", "jfexTowers (use L1_jFexEmulatedTowers for built from SC, or L1_jFexDataTowers for efex readout"}
private

Definition at line 37 of file jTowerMakerFromJfexTowers.h.

37{this, "InputDataTowers", "L1_jFexDataTowers", "jfexTowers (use L1_jFexEmulatedTowers for built from SC, or L1_jFexDataTowers for efex readout"};

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_EmulTowerKey

SG::ReadHandleKey<xAOD::jFexTowerContainer> LVL1::jTowerMakerFromJfexTowers::m_EmulTowerKey {this, "InputEmulatedTowers", "L1_jFexEmulatedTowers", "If specified, will fallback to this collection of towers if the first collection is incomplete/empty"}
private

Definition at line 42 of file jTowerMakerFromJfexTowers.h.

42{this, "InputEmulatedTowers", "L1_jFexEmulatedTowers", "If specified, will fallback to this collection of towers if the first collection is incomplete/empty"};

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_isMC

Gaudi::Property<bool> LVL1::jTowerMakerFromJfexTowers::m_isMC {this, "IsMC", false, "Is used to know when we run on data. So L1_jFexDataTowers can be present"}
private

Definition at line 46 of file jTowerMakerFromJfexTowers.h.

46{this, "IsMC", false, "Is used to know when we run on data. So L1_jFexDataTowers can be present"};

◆ m_jSuperCellTowerMapperTool

ToolHandle<IjSuperCellTowerMapper> LVL1::jTowerMakerFromJfexTowers::m_jSuperCellTowerMapperTool {this, "jSuperCellTowerMapperTool", "LVL1::jSuperCellTowerMapper", "Tool that maps supercells to jTowers"}
private

Definition at line 53 of file jTowerMakerFromJfexTowers.h.

53{this, "jSuperCellTowerMapperTool", "LVL1::jSuperCellTowerMapper", "Tool that maps supercells to jTowers"};

◆ m_jTowerBuilderTool

ToolHandle<IjTowerBuilder> LVL1::jTowerMakerFromJfexTowers::m_jTowerBuilderTool {this, "jTowerBuilderTool", "LVL1::jTowerBuilder", "Tool that builds jTowers for simulation"}
private

Definition at line 52 of file jTowerMakerFromJfexTowers.h.

52{this, "jTowerBuilderTool", "LVL1::jTowerBuilder", "Tool that builds jTowers for simulation"};

◆ m_jTowerContainerSGKey

SG::WriteHandleKey<LVL1::jTowerContainer> LVL1::jTowerMakerFromJfexTowers::m_jTowerContainerSGKey {this, "MyJTowers", "jTowerContainer", "MyJTowers"}
private

Definition at line 50 of file jTowerMakerFromJfexTowers.h.

50{this, "MyJTowers", "jTowerContainer", "MyJTowers"};

◆ m_UseEmulated

Gaudi::Property<bool> LVL1::jTowerMakerFromJfexTowers::m_UseEmulated {this, "UseEmulated", true, "It switches off the CaloCell -> Jtower path. It uses instead L1_jFexDataTowers and L1_jFexEmulatedTowers "}
private

Definition at line 45 of file jTowerMakerFromJfexTowers.h.

45{this, "UseEmulated", true, "It switches off the CaloCell -> Jtower path. It uses instead L1_jFexDataTowers and L1_jFexEmulatedTowers "};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.


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