ATLAS Offline Software
Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Types | Private Member Functions | Private Attributes | List of all members
JiveXML::TauJetRetriever Class Reference

Retrieves all TauJet objects. More...

#include <TauJetRetriever.h>

Inheritance diagram for JiveXML::TauJetRetriever:
Collaboration diagram for JiveXML::TauJetRetriever:

Public Member Functions

 TauJetRetriever (const std::string &type, const std::string &name, const IInterface *parent)
 Standard Constructor. More...
 
virtual StatusCode retrieve (ToolHandle< IFormatTool > &FormatTool)
 Retrieve all the data. More...
 
const DataMap getData (const Analysis::TauJetContainer *)
 Retrieve basic parameters, mainly four-vectors, for each collection. More...
 
virtual std::string dataTypeName () const
 Return the name of the data type. 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 sysInitialize () override
 Perform system initialization for an algorithm. 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
 

Static Public Member Functions

static const InterfaceID & interfaceID ()
 Return the interface identifier. More...
 

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution More...
 
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. More...
 

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t
 

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey> More...
 
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyArrayType &)
 specialization for handling Gaudi::Property<SG::VarHandleKeyArray> More...
 
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleType &)
 specialization for handling Gaudi::Property<SG::VarHandleBase> More...
 
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &t, const SG::NotHandleType &)
 specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray> More...
 

Private Attributes

const std::string m_typeName
 The data type that is generated by this retriever. More...
 
std::string m_sgKey
 
bool m_doWriteHLT
 
std::string m_tauCutLevelSelect
 
bool m_fastSimSGFlag
 
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default) More...
 
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default) More...
 
std::vector< SG::VarHandleKeyArray * > m_vhka
 
bool m_varHandleArraysDeclared
 

Detailed Description

Retrieves all TauJet objects.

Definition at line 34 of file TauJetRetriever.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

◆ TauJetRetriever()

JiveXML::TauJetRetriever::TauJetRetriever ( const std::string &  type,
const std::string &  name,
const IInterface *  parent 
)

Standard Constructor.

This is the standard AthAlgTool constructor.

Parameters
typeAlgTool type name
nameAlgTool instance name
parentAlgTools parent owning this tool

Definition at line 30 of file TauJetRetriever.cxx.

30  :
32  m_typeName("TauJet"){
33 
34  //Only declare the interface
35  declareInterface<IDataRetriever>(this);
36 
37  declareProperty("StoreGateKey", m_sgKey = "TauRecContainer");
38  declareProperty("DoWriteHLT", m_doWriteHLT = false); // ignore HLTAutoKey objects
39  m_fastSimSGFlag = false; }

Member Function Documentation

◆ dataTypeName()

virtual std::string JiveXML::TauJetRetriever::dataTypeName ( ) const
inlinevirtual

Return the name of the data type.

Implements JiveXML::IDataRetriever.

Definition at line 47 of file TauJetRetriever.h.

47 { return m_typeName; };

◆ declareGaudiProperty() [1/4]

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

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

Definition at line 170 of file AthCommonDataStore.h.

172  {
173  return *AthCommonDataStore<PBASE>::declareProperty(hndl.name(),
174  hndl.value(),
175  hndl.documentation());
176 
177  }

◆ declareGaudiProperty() [2/4]

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

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

Definition at line 156 of file AthCommonDataStore.h.

158  {
159  return *AthCommonDataStore<PBASE>::declareProperty(hndl.name(),
160  hndl.value(),
161  hndl.documentation());
162 
163  }

◆ declareGaudiProperty() [3/4]

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

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

Definition at line 184 of file AthCommonDataStore.h.

186  {
187  return *AthCommonDataStore<PBASE>::declareProperty(hndl.name(),
188  hndl.value(),
189  hndl.documentation());
190  }

◆ declareGaudiProperty() [4/4]

Gaudi::Details::PropertyBase& AthCommonDataStore< AthCommonMsg< AlgTool > >::declareGaudiProperty ( Gaudi::Property< T > &  t,
const SG::NotHandleType  
)
inlineprivateinherited

specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray>

Definition at line 199 of file AthCommonDataStore.h.

200  {
201  return PBASE::declareProperty(t);
202  }

◆ declareProperty() [1/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( const std::string &  name,
SG::VarHandleBase hndl,
const std::string &  doc,
const SG::VarHandleType  
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
hndlObject holding the property value.
docDocumentation 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.

249  {
250  this->declare(hndl.vhKey());
251  hndl.vhKey().setOwner(this);
252 
253  return PBASE::declareProperty(name,hndl,doc);
254  }

◆ declareProperty() [2/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( const std::string &  name,
SG::VarHandleKey hndl,
const std::string &  doc,
const SG::VarHandleKeyType  
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
hndlObject holding the property value.
docDocumentation 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.

225  {
226  this->declare(hndl);
227  hndl.setOwner(this);
228 
229  return PBASE::declareProperty(name,hndl,doc);
230  }

◆ declareProperty() [3/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( const std::string &  name,
SG::VarHandleKeyArray hndArr,
const std::string &  doc,
const SG::VarHandleKeyArrayType  
)
inlineinherited

Definition at line 259 of file AthCommonDataStore.h.

263  {
264 
265  // std::ostringstream ost;
266  // ost << Algorithm::name() << " VHKA declareProp: " << name
267  // << " size: " << hndArr.keys().size()
268  // << " mode: " << hndArr.mode()
269  // << " vhka size: " << m_vhka.size()
270  // << "\n";
271  // debug() << ost.str() << endmsg;
272 
273  hndArr.setOwner(this);
274  m_vhka.push_back(&hndArr);
275 
276  Gaudi::Details::PropertyBase* p = PBASE::declareProperty(name, hndArr, doc);
277  if (p != 0) {
278  p->declareUpdateHandler(&AthCommonDataStore<PBASE>::updateVHKA, this);
279  } else {
280  ATH_MSG_ERROR("unable to call declareProperty on VarHandleKeyArray "
281  << name);
282  }
283 
284  return p;
285 
286  }

◆ declareProperty() [4/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( const std::string &  name,
T &  property,
const std::string &  doc,
const SG::NotHandleType  
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
propertyObject holding the property value.
docDocumentation 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.

337  {
338  return PBASE::declareProperty(name, property, doc);
339  }

◆ declareProperty() [5/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( const std::string &  name,
T &  property,
const std::string &  doc = "none" 
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
propertyObject holding the property value.
docDocumentation 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.

355  {
356  typedef typename SG::HandleClassifier<T>::type htype;
357  return declareProperty (name, property, doc, htype());
358  }

◆ declareProperty() [6/6]

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

Definition at line 145 of file AthCommonDataStore.h.

145  {
146  typedef typename SG::HandleClassifier<T>::type htype;
148  }

◆ 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.

95 { return m_detStore; }

◆ evtStore() [1/2]

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.

85 { return m_evtStore; }

◆ evtStore() [2/2]

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

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

Definition at line 90 of file AthCommonDataStore.h.

90 { return m_evtStore; }

◆ 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

◆ getData()

const DataMap JiveXML::TauJetRetriever::getData ( const Analysis::TauJetContainer taucont)

Retrieve basic parameters, mainly four-vectors, for each collection.

Also association with clusters and tracks (ElementLink).

Definition at line 105 of file TauJetRetriever.cxx.

105  {
106 
107  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "in getData()" << endmsg;
108 
110 
111  DataVect phi; phi.reserve(taucont->size());
112  DataVect eta; eta.reserve(taucont->size());
113  DataVect pt; pt.reserve(taucont->size());
114  DataVect mass; mass.reserve(taucont->size());
115  DataVect energy; energy.reserve(taucont->size());
116  DataVect px; px.reserve(taucont->size());
117  DataVect py; py.reserve(taucont->size());
118  DataVect pz; pz.reserve(taucont->size());
119 
120  DataVect isTauString; isTauString.reserve(taucont->size());
121  DataVect label; label.reserve(taucont->size());
122  DataVect numTracks; numTracks.reserve(taucont->size());
123  DataVect charge; charge.reserve(taucont->size());
124  DataVect author; author.reserve(taucont->size());
125  DataVect etEMCalib; etEMCalib.reserve(taucont->size());
126  DataVect etHadCalib; etHadCalib.reserve(taucont->size());
127  DataVect emRadius; emRadius.reserve(taucont->size());
128  DataVect isolFrac; isolFrac.reserve(taucont->size());
129  DataVect stripWidth; stripWidth.reserve(taucont->size());
130  DataVect logLhRatio; logLhRatio.reserve(taucont->size());
131 
132 // DataVect isTau; isTau.reserve(taucont->size()); // available from rel.15 ?
133 
134  // for associations:
135  DataVect clusterKeyVec; clusterKeyVec.reserve(taucont->size());
136  DataVect clusterIndexVec; clusterIndexVec.reserve(taucont->size());
137  DataVect trackKeyVec; trackKeyVec.reserve(taucont->size());
138  DataVect trackIndexVec; trackIndexVec.reserve(taucont->size());
139  DataVect trackLinkCountVec; trackLinkCountVec.reserve(taucont->size());
140 
141 //from AnalysisSkeleton
142 
143  Analysis::TauJetContainer::const_iterator taujetItr = taucont->begin();
144  Analysis::TauJetContainer::const_iterator taujetItrE = taucont->end();
145 
147  bool checkDataType=true;
148 
149  if ( taujetItr != taujetItrE) {
150  dataType = (*taujetItr)->dataType();
151  checkDataType = (dataType != ParticleDataType::Fast) &&
153  }
154 
155  if(checkDataType){
156  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " TauJet Datatype: Full Sim " << endmsg;
157  }else{
158  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " TauJet Datatype: Fast Sim " << endmsg;
159  }
160  // if ( m_fastSimSGFlag ){ if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " fastSimSGFlag set ! " << endmsg; }
161 
162  unsigned int countTrackLinks = 0;
163  unsigned int numTauJets = 0;
164  std::string numTracksPerTaujet = "";
165  std::string trackKeyString = "trackKey"; // default: n/a or fast sim
166  std::string trackIndexString = "trackIndex";
167 
168  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " Number of TauJets: " << taucont->size() << endmsg;
169  if (checkDataType && !m_fastSimSGFlag){ // full sim
170  for (; taujetItr != taujetItrE; ++taujetItr) { // first, just count trackKey for multiple
171  const ElementLinkVector<Rec::TrackParticleContainer> myTrackLinkVector = (*taujetItr)->trackLinkVector();
172  countTrackLinks += myTrackLinkVector.size();
173  numTauJets++;
174  }
175  if ( numTauJets == 0 ){ // capture division by zero
176  numTracksPerTaujet = "0";
177  } else {
178  numTracksPerTaujet = DataType( countTrackLinks/((double) numTauJets )).toString();
179  }
180  trackKeyString = "trackKey multiple=\""+numTracksPerTaujet+"\"";
181  trackIndexString = "trackIndex multiple=\""+numTracksPerTaujet+"\"";
182  } // full sim
183 
184  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " trackKeyString: " << trackKeyString <<
185  " trackIndexString: " << trackIndexString << endmsg;
186 
187  std::string labelStr = "none";
188  std::string isTauStr = "none";
189  int id=0;
190  taujetItr = taucont->begin(); // reset iterator
191  for (; taujetItr != taujetItrE; ++taujetItr) { // full loop
192 
193  pt.push_back( JiveXML::DataType((*taujetItr)->pt()/CLHEP::GeV ) );
194  phi.push_back( JiveXML::DataType((*taujetItr)->phi() ) );
195  eta.push_back( JiveXML::DataType((*taujetItr)->eta() ) );
196  px.push_back( JiveXML::DataType((*taujetItr)->px()/CLHEP::GeV ) );
197  py.push_back( JiveXML::DataType((*taujetItr)->py()/CLHEP::GeV ) );
198  pz.push_back( JiveXML::DataType((*taujetItr)->pz()/CLHEP::GeV ) );
199  energy.push_back( JiveXML::DataType((*taujetItr)->m()/CLHEP::GeV ) );
200  mass.push_back( JiveXML::DataType((*taujetItr)->e()/CLHEP::GeV ) );
201 
202  if (checkDataType && !m_fastSimSGFlag) { // full sim
203 
204  std::string taujetAuthor = "none";
205  if (( (*taujetItr)->author()) == 0){ taujetAuthor = "default"; }
206  if (( (*taujetItr)->author()) == 1){ taujetAuthor = "tauRec"; }
207  if (( (*taujetItr)->author()) == 2){ taujetAuthor = "tau1P3P"; }
208  author.push_back( JiveXML::DataType( taujetAuthor ) );
209 
210  labelStr = taujetAuthor;
211 
212  numTracks.push_back( JiveXML::DataType( (*taujetItr)->numTrack() ) );
213  charge.push_back( JiveXML::DataType((*taujetItr)->charge() ) );
214 
215  isTauStr = "none";
216  // this is organised as hierarchy: First Tau1P3p, then CaloCuts
217  // 'best' tau passed is TauCutTight. This is used for cut in GUI
218  // all info written into 'label'
219  if ((*taujetItr)->tauID()->isTau(TauJetParameters::TauLlhLoose)){
220  isTauStr = "TauLlhLoose"; labelStr += "_TauLlhLoose";}
221  if ((*taujetItr)->tauID()->isTau(TauJetParameters::TauLlhMedium)){
222  isTauStr = "TauLlhMedium"; labelStr += "_TauLlhMedium";}
223  if ((*taujetItr)->tauID()->isTau(TauJetParameters::TauLlhTight)){
224  isTauStr = "TauLlhTight"; labelStr += "_TauLlhTight";}
225  if ((*taujetItr)->tauID()->isTau(TauJetParameters::TauCutLoose)){
226  isTauStr = "TauCutLoose"; labelStr += "_TauCutLoose";}
227  if ((*taujetItr)->tauID()->isTau(TauJetParameters::TauCutMedium)){
228  isTauStr = "TauCutMedium"; labelStr += "_TauCutMedium";}
229  if ((*taujetItr)->tauID()->isTau(TauJetParameters::TauCutTight)){
230  isTauStr = "TauCutTight"; labelStr += "_TauCutTight"; }
231  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " TauJet # " << (++id)
232  << ", label:" << labelStr << endmsg;
233  isTauString.push_back (isTauStr);
234  label.push_back( labelStr );
235 // obsolete, only for backwards compatibility
236  etEMCalib.push_back( JiveXML::DataType( 0. ) );
237  etHadCalib.push_back( JiveXML::DataType( 0. ) );
238  emRadius.push_back( JiveXML::DataType( 0. ) );
239  isolFrac.push_back( JiveXML::DataType( 0. ) ); // keep this ?
240  stripWidth.push_back( JiveXML::DataType( 0. ) );
241  logLhRatio.push_back( JiveXML::DataType( 0. ) ); // drop this !
242 
243 // new access to details taken from: jpt 10Nov09
244 // PhysicsAnalysis/TauID/TauAnalysis/TauJetSelector.cxx
245 // http://atlas-sw.cern.ch/cgi-bin/viewcvs-atlas.cgi/offline/Reconstruction/tauRec/src/tauCuts.cxx?revision=1.27.8.1&view=markup&pathrev=tauRec-02-05-48-branch
246 // https://twiki.cern.ch/twiki/bin/view/Atlas/TauEDM
247 //
248 // parameters for associations: Storegate key and Index
249 
250  // This doesn't work in devval towards 16.0.0: no valid link.
251  // Also not with clusterLinkVector, not available for TauJet.
252  const ElementLink<CaloClusterContainer> clusterLink = (*taujetItr)->clusterLink();
253  if (clusterLink.isValid()) {
254  std::string clusterKey = clusterLink.dataID(); // Storegate key of
255  int clusterIndex = clusterLink.index(); // index into the contianer
256  clusterKeyVec.push_back(DataType( clusterKey ));
257  clusterIndexVec.push_back(DataType( clusterIndex));
258  } else { // no clusterLink
259  clusterKeyVec.push_back(DataType( "none" ));
260  clusterIndexVec.push_back(DataType( -1 ));
261  }
262 
263  // this works fine
264  const ElementLinkVector<Rec::TrackParticleContainer> myTrackLinkVector = (*taujetItr)->trackLinkVector();
265 
266  unsigned int trackLinkCount = myTrackLinkVector.size();
267  trackLinkCountVec.push_back(DataType( trackLinkCount ));
268 
269  if (trackLinkCount > 0){
270  for (unsigned int i=0; i<trackLinkCount; ++i){
271 
272  const ElementLink<Rec::TrackParticleContainer> trackParticleLink = myTrackLinkVector.at(i);
273  std::string trackKey = trackParticleLink.dataID();
274  int trackIndex = trackParticleLink.index();
275  if ( trackParticleLink.isValid()){
276  // if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << dataTypeName() << " TrackParticle " << trackKey << " ,"
277  // << " Index " << trackIndex << " " << endmsg;
278 
279  trackKeyVec.push_back(DataType( trackKey ));
280  trackIndexVec.push_back(DataType( trackIndex));
281  } else { // no trackLink
282  trackKeyVec.push_back(DataType( "none" ));
283  trackIndexVec.push_back(DataType( -1 ));
284  }
285  }
286  }
287  } else { // end of checkDataType loop. Now fast simulation placeholders:
288 
289  std::string numTracksEmpty = "0";
290  author.push_back( JiveXML::DataType( "atlfast" ) );
291  numTracks.push_back( JiveXML::DataType( "1" ));
292  charge.push_back( JiveXML::DataType( 1. ) );
293  etEMCalib.push_back( JiveXML::DataType( 0. ) );
294  etHadCalib.push_back( JiveXML::DataType( 0. ) );
295  emRadius.push_back( JiveXML::DataType( 0. ) );
296  isolFrac.push_back( JiveXML::DataType( 0. ) );
297  stripWidth.push_back( JiveXML::DataType( 0. ) );
298  logLhRatio.push_back( JiveXML::DataType( 0. ) );
299  isTauString.push_back( JiveXML::DataType( "fastSim" ) );
300  label.push_back( JiveXML::DataType( "atlfast" ) );
301 
302  clusterKeyVec.push_back(DataType( "none" ));
303  clusterIndexVec.push_back(DataType( -1 ));
304  trackKeyVec.push_back(DataType( "none" ));
305  trackIndexVec.push_back(DataType( -1 ));
306  trackLinkCountVec.push_back(DataType( -1 ));
307  }
308  } // end tau iterator
309 
310  // four-vectors
311  DataMap["phi"] = phi;
312  DataMap["eta"] = eta;
313  DataMap["pt"] = pt;
314  DataMap["energy"] = energy;
315  DataMap["mass"] = mass;
316  DataMap["px"] = px;
317  DataMap["py"] = py;
318  DataMap["pz"] = pz;
319 
320  // special tau parameters
321  DataMap["isTauString"] = isTauString;
322  DataMap["label"] = label;
323  DataMap["numTracks"] = numTracks;
324  DataMap["charge"] = charge;
325  DataMap["author"] = author;
326  DataMap["etEMCalib"] = etEMCalib;
327  DataMap["etHadCalib"] = etHadCalib;
328  DataMap["emRadius"] = emRadius;
329  DataMap["isolFrac"] = isolFrac;
330  DataMap["stripWidth"] = stripWidth;
331  DataMap["logLhRatio"] = logLhRatio;
332 // DataMap["isTau"] = isTau;
333  // associations
334  DataMap["clusterKey"] = clusterKeyVec;
335  DataMap["clusterIndex"] = clusterIndexVec;
336  DataMap[trackKeyString] = trackKeyVec;
337  DataMap[trackIndexString] = trackIndexVec;
338  DataMap["trackLinkCount"] = trackLinkCountVec;
339 
340  if (msgLvl(MSG::DEBUG)) {
341  msg(MSG::DEBUG) << dataTypeName() << " retrieved with " << phi.size() << " entries"<< endmsg;
342  }
343 
344  //All collections retrieved okay
345  return DataMap;
346 
347  } // retrieve

◆ 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 & JiveXML::IDataRetriever::interfaceID ( )
inlinestaticinherited

Return the interface identifier.

Definition at line 40 of file IDataRetriever.h.

40 { return IID_IDataRetriever; }

◆ msg() [1/2]

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

Definition at line 24 of file AthCommonMsg.h.

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

◆ msg() [2/2]

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

Definition at line 27 of file AthCommonMsg.h.

27  {
28  return this->msgStream(lvl);
29  }

◆ 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.

◆ 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();
383  PBASE::renounce (h);
384  }

◆ 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  {
365  handlesArray.renounce();
366  }

◆ retrieve()

StatusCode JiveXML::TauJetRetriever::retrieve ( ToolHandle< IFormatTool > &  FormatTool)
virtual

Retrieve all the data.

For each jet collections retrieve basic parameters.

Parameters
FormatToolthe tool that will create formated output from the DataMap

Implements JiveXML::IDataRetriever.

Definition at line 44 of file TauJetRetriever.cxx.

44  {
45 
46  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "in retrieveAll()" << endmsg;
47 
49  const Analysis::TauJetContainer* tauCont;
50 
51  //obtain the default collection first
52  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Trying to retrieve " << dataTypeName() << " (" << m_sgKey << ")" << endmsg;
53  StatusCode sc = evtStore()->retrieve(tauCont, m_sgKey);
54  if (sc.isFailure()) {
55  if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Collection " << m_sgKey << " not found in SG " << endmsg;
56  }else{
57  if ( tauCont->size() > 0){ // check that collection is not empty
58  DataMap data = getData(tauCont);
59  if ( FormatTool->AddToEvent(dataTypeName(), m_sgKey, &data).isFailure()){
60  if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Collection " << m_sgKey << " not found in SG " << endmsg;
61  }else{
62  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << dataTypeName() << " (" << m_sgKey << ") TauJet retrieved" << endmsg;
63  }
64  }
65  }
66 
67  //obtain all other collections from StoreGate
68  if (( evtStore()->retrieve(iterator, end)).isFailure()){
69  if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Unable to retrieve iterator for Jet collection" << endmsg;
70 // return StatusCode::WARNING;
71  }
72 
73  for (; iterator!=end; ++iterator) {
74  m_fastSimSGFlag = false; //reset
75  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " Trying TauJets from: " << iterator.key() << endmsg;
76  std::string::size_type position = iterator.key().find("HLT",0); // special case. Normally: HLTAutokey
77  // some Atlfast collections wrongly assign 'Full' to DataType:
78  std::string::size_type positionFast = iterator.key().find("Atlfast",0);
79  if ( positionFast == 0){
80  m_fastSimSGFlag = true;
81  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << " SG key Atlfast collection: Fast Sim " << endmsg;
82  };
83  if ( m_doWriteHLT ){ position = 99; } // override SG key find
84  if ( position != 0 ){ // SG key doesn't contain HLTAutoKey
85  if ( iterator.key()!=m_sgKey) {
86  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << "Trying to retrieve all " << dataTypeName() << " (" << iterator.key() << ")" << endmsg;
88  if ( FormatTool->AddToEvent(dataTypeName(), iterator.key(), &data).isFailure()){
89  if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << "Collection " << iterator.key() << " not found in SG " << endmsg;
90  }else{
91  if (msgLvl(MSG::DEBUG)) msg(MSG::DEBUG) << dataTypeName() << " (" << iterator.key() << ") TauJet retrieved" << endmsg;
92  }
93  }
94  }
95  } // end collection iterator
96  //All collections retrieved okay
97  return StatusCode::SUCCESS;
98  }

◆ 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 DerivationFramework::CfAthAlgTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and asg::AsgMetadataTool.

◆ 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) {
312  std::vector<SG::VarHandleKey*> keys = a->keys();
313  for (auto k : keys) {
314  k->setOwner(this);
315  }
316  }
317  }

Member Data Documentation

◆ 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_doWriteHLT

bool JiveXML::TauJetRetriever::m_doWriteHLT
private

Definition at line 54 of file TauJetRetriever.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_fastSimSGFlag

bool JiveXML::TauJetRetriever::m_fastSimSGFlag
private

Definition at line 56 of file TauJetRetriever.h.

◆ m_sgKey

std::string JiveXML::TauJetRetriever::m_sgKey
private

Definition at line 53 of file TauJetRetriever.h.

◆ m_tauCutLevelSelect

std::string JiveXML::TauJetRetriever::m_tauCutLevelSelect
private

Definition at line 55 of file TauJetRetriever.h.

◆ m_typeName

const std::string JiveXML::TauJetRetriever::m_typeName
private

The data type that is generated by this retriever.

Definition at line 51 of file TauJetRetriever.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:
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
DataModel_detail::const_iterator
Const iterator class for DataVector/DataList.
Definition: DVLIterator.h:82
TauJetParameters::TauLlhLoose
@ TauLlhLoose
Definition: TauJetParameters.h:112
test_pyathena.px
px
Definition: test_pyathena.py:18
python.PerfMonSerializer.p
def p
Definition: PerfMonSerializer.py:743
phi
Scalar phi() const
phi method
Definition: AmgMatrixBasePlugin.h:64
eta
Scalar eta() const
pseudorapidity method
Definition: AmgMatrixBasePlugin.h:79
AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
Definition: AthCommonDataStore.h:145
PlotCalibFromCool.label
label
Definition: PlotCalibFromCool.py:78
TauJetParameters::TauCutMedium
@ TauCutMedium
Definition: TauJetParameters.h:106
JiveXML::DataVect
std::vector< DataType > DataVect
Defines a map with a key and a vector of DataType objects e.g.
Definition: DataType.h:58
TauJetParameters::etEMCalib
@ etEMCalib
Definition: TauJetParameters.h:148
DataType
OFFLINE_FRAGMENTS_NAMESPACE::PointerType DataType
Definition: RoIBResultByteStreamTool.cxx:25
test_pyathena.pt
pt
Definition: test_pyathena.py:11
AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
Definition: AthCommonDataStore.h:390
JiveXML::TauJetRetriever::m_sgKey
std::string m_sgKey
Definition: TauJetRetriever.h:53
AthCommonDataStore< AthCommonMsg< AlgTool > >::m_vhka
std::vector< SG::VarHandleKeyArray * > m_vhka
Definition: AthCommonDataStore.h:398
downloadSingle.dataType
string dataType
Definition: downloadSingle.py:18
JiveXML::TauJetRetriever::m_fastSimSGFlag
bool m_fastSimSGFlag
Definition: TauJetRetriever.h:56
AthCommonMsg< AlgTool >::msgLvl
bool msgLvl(const MSG::Level lvl) const
Definition: AthCommonMsg.h:30
Analysis::TauJetContainer
Definition: Reconstruction/tauEvent/tauEvent/TauJetContainer.h:31
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
JiveXML::DataMap
std::map< std::string, DataVect > DataMap
Definition: DataType.h:59
ParticleDataType::DataType
DataType
Definition: Event/EventKernel/EventKernel/IParticle.h:36
dqt_zlumi_pandas.mass
mass
Definition: dqt_zlumi_pandas.py:170
AthenaPoolTestRead.sc
sc
Definition: AthenaPoolTestRead.py:27
TauJetParameters::TauCutTight
@ TauCutTight
Definition: TauJetParameters.h:107
mergePhysValFiles.end
end
Definition: DataQuality/DataQualityUtils/scripts/mergePhysValFiles.py:93
SG::VarHandleKeyArray::setOwner
virtual void setOwner(IDataHandleHolder *o)=0
AthCommonDataStore< AthCommonMsg< AlgTool > >::evtStore
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:85
AthCommonDataStore
Definition: AthCommonDataStore.h:52
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
ParticleGun_FastCalo_ChargeFlip_Config.energy
energy
Definition: ParticleGun_FastCalo_ChargeFlip_Config.py:78
lumiFormat.i
int i
Definition: lumiFormat.py:92
JiveXML::DataType
Templated class to convert any object that is streamable in a ostringstream in a string.
Definition: DataType.h:21
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TauJetParameters::TauLlhMedium
@ TauLlhMedium
Definition: TauJetParameters.h:111
Amg::pz
@ pz
Definition: GeoPrimitives.h:40
test_pyathena.parent
parent
Definition: test_pyathena.py:15
ParticleDataType::Fast
@ Fast
Definition: Event/EventKernel/EventKernel/IParticle.h:36
JiveXML::TauJetRetriever::retrieve
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
Definition: TauJetRetriever.cxx:44
TauJetParameters::etHadCalib
@ etHadCalib
Definition: TauJetParameters.h:147
AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
Definition: AthCommonDataStore.h:393
AthAlgTool::AthAlgTool
AthAlgTool()
Default constructor:
TauJetParameters::emRadius
@ emRadius
Definition: TauJetParameters.h:149
SG::VarHandleKeyArray::renounce
virtual void renounce()=0
SG::HandleClassifier::type
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
Definition: HandleClassifier.h:54
JiveXML::TauJetRetriever::m_doWriteHLT
bool m_doWriteHLT
Definition: TauJetRetriever.h:54
ElementLinkVector< Rec::TrackParticleContainer >
Amg::py
@ py
Definition: GeoPrimitives.h:39
merge_scale_histograms.doc
string doc
Definition: merge_scale_histograms.py:9
id
SG::auxid_t id
Definition: Control/AthContainers/Root/debug.cxx:191
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
ParticleDataType::True
@ True
Definition: Event/EventKernel/EventKernel/IParticle.h:36
charge
double charge(const T &p)
Definition: AtlasPID.h:494
JiveXML::TauJetRetriever::getData
const DataMap getData(const Analysis::TauJetContainer *)
Retrieve basic parameters, mainly four-vectors, for each collection.
Definition: TauJetRetriever.cxx:105
ElementLinkVector::at
const_reference at(size_type n) const
Definition: AthLinks/ElementLinkVector.h:307
JiveXML::TauJetRetriever::m_typeName
const std::string m_typeName
The data type that is generated by this retriever.
Definition: TauJetRetriever.h:47
DataVector::end
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
ElementLinkVector::size
size_type size() const
Definition: AthLinks/ElementLinkVector.h:292
a
TList * a
Definition: liststreamerinfos.cxx:10
h
JiveXML::TauJetRetriever::dataTypeName
virtual std::string dataTypeName() const
Return the name of the data type.
Definition: TauJetRetriever.h:47
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
DEBUG
#define DEBUG
Definition: page_access.h:11
CaloCondBlobAlgs_fillNoiseFromASCII.author
string author
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:26
AthCommonMsg< AlgTool >::msg
MsgStream & msg() const
Definition: AthCommonMsg.h:24
SG::VarHandleBase::vhKey
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
Definition: StoreGate/src/VarHandleBase.cxx:616
xAOD::TauJetParameters::isolFrac
@ isolFrac
Get isolation fraction.
Definition: TauDefs.h:198
declareProperty
#define declareProperty(n, p, h)
Definition: BaseFakeBkgTool.cxx:15
python.Bindings.keys
keys
Definition: Control/AthenaPython/python/Bindings.py:790
TauJetParameters::TauLlhTight
@ TauLlhTight
Definition: TauJetParameters.h:110
TauJetParameters::TauCutLoose
@ TauCutLoose
Definition: TauJetParameters.h:105
GeV
#define GeV
Definition: CaloTransverseBalanceVecMon.cxx:30
SG::ConstIterator
Definition: SGIterator.h:163
DataVector::size
size_type size() const noexcept
Returns the number of elements in the collection.
AthCommonDataStore::declareGaudiProperty
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition: AthCommonDataStore.h:156
DataVector::begin
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
fitman.k
k
Definition: fitman.py:528