|
ATLAS Offline Software
|
#include <jFEXNtupleWriter.h>
|
| jFEXNtupleWriter (const std::string &name, ISvcLocator *pSvcLocator) |
|
| ~jFEXNtupleWriter () |
|
StatusCode | initialize () |
|
StatusCode | execute () |
|
StatusCode | finalize () |
|
virtual StatusCode | sysInitialize () override |
| Override sysInitialize. More...
|
|
virtual const DataObjIDColl & | extraOutputDeps () const override |
| Return the list of extra output dependencies. More...
|
|
ServiceHandle< StoreGateSvc > & | evtStore () |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | evtStore () const |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | detStore () const |
| The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
virtual StatusCode | sysStart () override |
| Handle START transition. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| Return this algorithm's input handles. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| Return this algorithm's output handles. More...
|
|
Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T > &t) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc="none") |
| Declare a new Gaudi property. More...
|
|
void | updateVHKA (Gaudi::Details::PropertyBase &) |
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
Definition at line 21 of file jFEXNtupleWriter.h.
◆ StoreGateSvc_t
◆ jFEXNtupleWriter()
LVL1::jFEXNtupleWriter::jFEXNtupleWriter |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
◆ ~jFEXNtupleWriter()
LVL1::jFEXNtupleWriter::~jFEXNtupleWriter |
( |
| ) |
|
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
253 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
229 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey
. It just forwards to the base class version of declareProperty
.
Definition at line 333 of file AthCommonDataStore.h.
338 return PBASE::declareProperty(
name, property,
doc);
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This dispatches to either the generic declareProperty
or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ execute()
StatusCode LVL1::jFEXNtupleWriter::execute |
( |
| ) |
|
Definition at line 109 of file jFEXNtupleWriter.cxx.
111 if(!jFEXOutputCollectionobj.
isValid()) {
113 return StatusCode::FAILURE;
116 return StatusCode::SUCCESS;
125 return StatusCode::SUCCESS;
◆ extraDeps_update_handler()
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 & AthAlgorithm::extraOutputDeps |
( |
| ) |
const |
|
overridevirtualinherited |
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 50 of file AthAlgorithm.cxx.
57 return Algorithm::extraOutputDeps();
◆ finalize()
StatusCode LVL1::jFEXNtupleWriter::finalize |
( |
| ) |
|
◆ initialize()
StatusCode LVL1::jFEXNtupleWriter::initialize |
( |
| ) |
|
◆ inputHandles()
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.
◆ loadlargeRJetAlgoVariables()
◆ loadPileupEt()
◆ loadPileupVariables()
◆ loadsmallRJetAlgoVariables()
◆ loadtauAlgoVariables()
◆ msg() [1/2]
◆ msg() [2/2]
◆ msgLvl()
◆ outputHandles()
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()
◆ renounceArray()
◆ sysInitialize()
StatusCode AthAlgorithm::sysInitialize |
( |
| ) |
|
|
overridevirtualinherited |
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ updateVHKA()
◆ m_detStore
◆ m_evtStore
◆ m_extendedExtraObjects
DataObjIDColl AthAlgorithm::m_extendedExtraObjects |
|
privateinherited |
◆ m_jFEXOutputCollectionSGKey
◆ m_largeRJet_ET
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJet_ET |
|
private |
◆ m_largeRJet_eta
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJet_eta |
|
private |
◆ m_largeRJet_nTOBs
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJet_nTOBs |
|
private |
◆ m_largeRJet_phi
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJet_phi |
|
private |
◆ m_largeRJetTOB_ET
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJetTOB_ET |
|
private |
◆ m_largeRJetTOB_eta
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJetTOB_eta |
|
private |
◆ m_largeRJetTOB_fpgaID
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJetTOB_fpgaID |
|
private |
◆ m_largeRJetTOB_jfexID
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJetTOB_jfexID |
|
private |
◆ m_largeRJetTOB_phi
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJetTOB_phi |
|
private |
◆ m_largeRJetTOB_sat
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJetTOB_sat |
|
private |
◆ m_largeRJetTOB_word
std::vector<int> LVL1::jFEXNtupleWriter::m_largeRJetTOB_word |
|
private |
◆ m_myTree
TTree* LVL1::jFEXNtupleWriter::m_myTree |
|
private |
◆ m_pileup_FPGAid
std::vector<int> LVL1::jFEXNtupleWriter::m_pileup_FPGAid |
|
private |
◆ m_pileup_jFEXid
std::vector<int> LVL1::jFEXNtupleWriter::m_pileup_jFEXid |
|
private |
◆ m_pileup_map_Et_values_EM_jet
std::vector<std::vector<int> > LVL1::jFEXNtupleWriter::m_pileup_map_Et_values_EM_jet |
|
private |
◆ m_pileup_map_Et_values_EM_met
std::vector<std::vector<int> > LVL1::jFEXNtupleWriter::m_pileup_map_Et_values_EM_met |
|
private |
◆ m_pileup_map_Et_values_HAD_jet
std::vector<std::vector<int> > LVL1::jFEXNtupleWriter::m_pileup_map_Et_values_HAD_jet |
|
private |
◆ m_pileup_map_Et_values_HAD_met
std::vector<std::vector<int> > LVL1::jFEXNtupleWriter::m_pileup_map_Et_values_HAD_met |
|
private |
◆ m_pileup_map_Et_values_Total_jet
std::vector<std::vector<int> > LVL1::jFEXNtupleWriter::m_pileup_map_Et_values_Total_jet |
|
private |
◆ m_pileup_map_Et_values_Total_met
std::vector<std::vector<int> > LVL1::jFEXNtupleWriter::m_pileup_map_Et_values_Total_met |
|
private |
◆ m_pileup_map_ID
std::vector<std::vector<int> > LVL1::jFEXNtupleWriter::m_pileup_map_ID |
|
private |
◆ m_pileup_rho_EM
std::vector<int> LVL1::jFEXNtupleWriter::m_pileup_rho_EM |
|
private |
◆ m_pileup_rho_FCAL
std::vector<int> LVL1::jFEXNtupleWriter::m_pileup_rho_FCAL |
|
private |
◆ m_pileup_rho_HAD1
std::vector<int> LVL1::jFEXNtupleWriter::m_pileup_rho_HAD1 |
|
private |
◆ m_pileup_rho_HAD2
std::vector<int> LVL1::jFEXNtupleWriter::m_pileup_rho_HAD2 |
|
private |
◆ m_pileup_rho_HAD3
std::vector<int> LVL1::jFEXNtupleWriter::m_pileup_rho_HAD3 |
|
private |
◆ m_smallRJet_clusterET
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJet_clusterET |
|
private |
◆ m_smallRJet_ET
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJet_ET |
|
private |
◆ m_smallRJet_eta
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJet_eta |
|
private |
◆ m_smallRJet_isCentralTowerSeed
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJet_isCentralTowerSeed |
|
private |
◆ m_smallRJet_nTOBs
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJet_nTOBs |
|
private |
◆ m_smallRJet_phi
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJet_phi |
|
private |
◆ m_smallRJetTOB_ET
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJetTOB_ET |
|
private |
◆ m_smallRJetTOB_eta
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJetTOB_eta |
|
private |
◆ m_smallRJetTOB_fpgaID
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJetTOB_fpgaID |
|
private |
◆ m_smallRJetTOB_jfexID
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJetTOB_jfexID |
|
private |
◆ m_smallRJetTOB_phi
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJetTOB_phi |
|
private |
◆ m_smallRJetTOB_sat
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJetTOB_sat |
|
private |
◆ m_smallRJetTOB_word
std::vector<int> LVL1::jFEXNtupleWriter::m_smallRJetTOB_word |
|
private |
◆ m_tau_clusterET
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_clusterET |
|
private |
◆ m_tau_ET
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_ET |
|
private |
◆ m_tau_eta
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_eta |
|
private |
◆ m_tau_FPGAid
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_FPGAid |
|
private |
◆ m_tau_isLocalMax
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_isLocalMax |
|
private |
◆ m_tau_ISO
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_ISO |
|
private |
◆ m_tau_jFEXid
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_jFEXid |
|
private |
◆ m_tau_phi
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_phi |
|
private |
◆ m_tau_realeta
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_realeta |
|
private |
◆ m_tau_TOB_ET
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_TOB_ET |
|
private |
◆ m_tau_TOB_eta
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_TOB_eta |
|
private |
◆ m_tau_TOB_ISO
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_TOB_ISO |
|
private |
◆ m_tau_TOB_phi
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_TOB_phi |
|
private |
◆ m_tau_TOB_Sat
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_TOB_Sat |
|
private |
◆ m_tau_TOB_word
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_TOB_word |
|
private |
◆ m_tau_TT_ID
std::vector<int> LVL1::jFEXNtupleWriter::m_tau_TT_ID |
|
private |
◆ m_varHandleArraysDeclared
◆ m_vhka
The documentation for this class was generated from the following files:
std::vector< int > m_tau_FPGAid
std::vector< int > m_largeRJetTOB_jfexID
std::vector< int > m_tau_clusterET
std::vector< int > m_smallRJet_ET
std::vector< int > m_tau_TOB_ET
std::vector< int > m_smallRJetTOB_word
std::vector< int > m_largeRJetTOB_phi
std::vector< int > m_smallRJetTOB_sat
std::vector< std::vector< int > > m_pileup_map_Et_values_Total_jet
std::vector< int > m_pileup_FPGAid
std::vector< int > get_pileup_map(int, std::string) const
std::vector< int > m_tau_TOB_ISO
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
std::vector< int > m_largeRJetTOB_word
std::vector< int > m_tau_TOB_Sat
int get_tau(int, std::string) const
StatusCode loadPileupEt(SG::ReadHandle< LVL1::jFEXOutputCollection >)
std::vector< int > m_smallRJet_phi
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
std::vector< int > m_smallRJetTOB_ET
std::vector< int > m_smallRJetTOB_phi
std::vector< int > m_tau_TOB_word
std::vector< int > m_tau_phi
const std::string & key() const
Return the StoreGate ID for the referenced object.
std::vector< int > m_pileup_rho_EM
StatusCode loadPileupVariables(SG::ReadHandle< LVL1::jFEXOutputCollection >)
std::vector< int > m_tau_ET
std::vector< int > m_pileup_rho_HAD3
std::vector< int > m_largeRJet_eta
virtual void setOwner(IDataHandleHolder *o)=0
std::vector< int > m_tau_isLocalMax
std::vector< int > m_largeRJetTOB_eta
std::vector< std::vector< int > > m_pileup_map_Et_values_Total_met
std::vector< int > m_tau_eta
virtual StatusCode sysInitialize() override
Override sysInitialize.
std::vector< int > m_largeRJet_phi
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
std::vector< int > m_tau_TOB_phi
::StatusCode StatusCode
StatusCode definition for legacy code.
std::vector< int > m_pileup_rho_HAD1
std::vector< int > m_pileup_rho_HAD2
StatusCode loadtauAlgoVariables(SG::ReadHandle< LVL1::jFEXOutputCollection >)
std::vector< int > m_largeRJetTOB_ET
std::vector< int > m_smallRJet_isCentralTowerSeed
std::vector< int > m_tau_jFEXid
std::vector< int > m_largeRJetTOB_sat
int get_pileup(int, std::string) const
#define CHECK(...)
Evaluate an expression and check for errors.
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
SG::ReadHandleKey< LVL1::jFEXOutputCollection > m_jFEXOutputCollectionSGKey
virtual bool isValid() override final
Can the handle be successfully dereferenced?
std::vector< int > m_smallRJetTOB_eta
virtual void renounce()=0
int get_largeRJet(int, std::string) const
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
std::vector< int > m_tau_TT_ID
StatusCode loadlargeRJetAlgoVariables(SG::ReadHandle< LVL1::jFEXOutputCollection >)
std::vector< int > m_tau_TOB_eta
StatusCode loadsmallRJetAlgoVariables(SG::ReadHandle< LVL1::jFEXOutputCollection >)
std::vector< int > m_smallRJet_clusterET
std::vector< int > m_tau_ISO
DataObjIDColl m_extendedExtraObjects
std::vector< std::vector< int > > m_pileup_map_Et_values_HAD_met
#define ATH_MSG_WARNING(x)
std::vector< int > m_smallRJetTOB_fpgaID
std::vector< int > m_tau_realeta
int get_smallRJet(int, std::string) const
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
AthAlgorithm()
Default constructor:
std::vector< std::vector< int > > m_pileup_map_Et_values_EM_met
std::vector< int > m_smallRJetTOB_jfexID
std::vector< int > m_largeRJet_ET
std::vector< int > m_largeRJet_nTOBs
std::vector< int > m_pileup_jFEXid
std::vector< int > m_largeRJetTOB_fpgaID
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
std::vector< int > m_pileup_rho_FCAL
std::vector< std::vector< int > > m_pileup_map_ID
std::vector< int > m_smallRJet_nTOBs
std::vector< int > m_smallRJet_eta
std::vector< std::vector< int > > m_pileup_map_Et_values_EM_jet
std::vector< std::vector< int > > m_pileup_map_Et_values_HAD_jet