ATLAS Offline Software
Loading...
Searching...
No Matches
TauolaPP Class Reference

This Algorithm provides an easy interface to Tauola C++ interface. More...

#include <TauolaPP.h>

Inheritance diagram for TauolaPP:
Collaboration diagram for TauolaPP:

Public Member Functions

 TauolaPP (const std::string &name, ISvcLocator *pSvcLocator)
 Constructor.
virtual StatusCode initialize () override
 Initialization of Tauola++ and setting of JO configurables.
virtual StatusCode execute (const EventContext &ctx) override
 Pass each event in the McEventCollection to Tauola to (re)decay the taus.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
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
 Get filter decision:
virtual void setFilterPassed (bool state, const EventContext &ctx) const
 Set filter decision:
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

Static Public Attributes

static CLHEP::HepRandomEngine * p_rndmEngine = nullptr

Protected Member Functions

virtual bool isReEntrant () const override final
 Legacy algorithms are not thread-safe.
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

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
Variables used to configure Tauola
IntegerProperty m_decay_particle {this, "decay_particle", 15}
 PDG ID of particle to study.
IntegerProperty m_decay_mode_same {this, "decay_mode_same", 1}
 TAUOLA decay mode of particles with same charge as "decay_particle".
IntegerProperty m_decay_mode_opp {this, "decay_mode_opposite", 2}
 TAUOLA decay mode of particles with opposite charge as "decay_particle".
DoubleProperty m_tau_mass {this, "tau_mass", 1.77684}
 tau mass to be taken by TAUOLA
BooleanProperty m_spin_correlation {this, "spin_correlation", true}
 TAUOLA switch for spin effects.
BooleanProperty m_setRadiation {this, "setRadiation", true}
 TAUOLA switch for radiative corrections for leptonic tau decays.
DoubleProperty m_setRadiationCutOff {this, "setRadiationCutOff", 0.01}
 TAUOLA cut-off for radiative corrections.

Features for derived classes to use internally

StringProperty m_key {this, "McEventKey", "GEN_EVENT"}
 Event record container key - FIXME should be using Read/WriteHandles here.
ServiceHandle< IAthRNGSvcm_rndmSvc {this, "RndmSvc", "AthRNGSvc"}
IntegerProperty m_dsid {this, "Dsid", 999999}
IntegerProperty m_randomSeed {this, "RandomSeed", 1234567, "Random seed for the built-in random engine"}
 Seed for random number engine.
void reseedRandomEngine (const std::string &streamName, const EventContext &ctx)
CLHEP::HepRandomEngine * getRandomEngine (const std::string &streamName, unsigned long int randomSeedOffset, const EventContext &ctx) const
CLHEP::HepRandomEngine * getRandomEngineDuringInitialize (const std::string &streamName, unsigned long int randomSeedOffset, unsigned int conditionsRun=1, unsigned int lbn=1) const

Detailed Description

This Algorithm provides an easy interface to Tauola C++ interface.

Author
Nadia Davidson, Marcin Wolter
Todo
Convert to use standard GenModule base class

Definition at line 23 of file TauolaPP.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

◆ TauolaPP()

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

Constructor.

Definition at line 34 of file TauolaPP.cxx.

35 : AthAlgorithm(name, pSvcLocator)
36{
37}
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.

Member Function Documentation

◆ 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 TauolaPP::execute ( const EventContext & ctx)
overridevirtual

Pass each event in the McEventCollection to Tauola to (re)decay the taus.

Implements AthAlgorithm.

Definition at line 111 of file TauolaPP.cxx.

111 {
112
113 //Re-seed the random number stream
114 reseedRandomEngine("TAUOLAPP", ctx);
115
116 // Load HepMC info
117 // FIXME should be using Read/WriteHandles here
118 const McEventCollection* mcCollptr_const;
119 ATH_CHECK( evtStore()->retrieve(mcCollptr_const, m_key) );
120 // Const_cast to make an event possible to update
121 McEventCollection* mcCollptr = const_cast<McEventCollection*>(mcCollptr_const);
122
123 // Loop over all events in McEventCollection
124 for (HepMC::GenEvent* evt : *mcCollptr) {
125 // Convert event record to format readable by tauola interface
126 auto t_event = new Tauolapp::TauolaHepMCEvent(evt);
127
128 // remove tau decays first
129 t_event->undecayTaus();
130 // decay taus
131 t_event->decayTaus();
132 // t_event->getEvent()->print();
133 }
134
135 return StatusCode::SUCCESS;
136}
#define ATH_CHECK
Evaluate an expression and check for errors.
ServiceHandle< StoreGateSvc > & evtStore()
StringProperty m_key
Event record container key - FIXME should be using Read/WriteHandles here.
Definition TauolaPP.h:47
void reseedRandomEngine(const std::string &streamName, const EventContext &ctx)
Definition TauolaPP.cxx:77
HepMC3::GenEvent GenEvent
Definition GenEvent.h:39
TauolaHepMC3Event TauolaHepMCEvent
Definition TauolaPP.cxx:14

◆ 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 & AthCommonAlgorithm< 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 89 of file AthCommonAlgorithm.cxx.

54{
55 // If we didn't find any symlinks to add, just return the collection
56 // from the base class. Otherwise, return the extended collection.
57 if (!m_extendedExtraObjects.empty()) {
59 }
61}
Common base class for algorithms.

◆ filterPassed()

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

Get filter decision:

Definition at line 93 of file AthCommonAlgorithm.h.

93 {
94 return execState( ctx ).filterPassed();
95 }
virtual bool filterPassed(const EventContext &ctx) const
Get filter decision:

◆ getRandomEngine()

CLHEP::HepRandomEngine * TauolaPP::getRandomEngine ( const std::string & streamName,
unsigned long int randomSeedOffset,
const EventContext & ctx ) const
private

Definition at line 85 of file TauolaPP.cxx.

87{
88 ATHRNG::RNGWrapper* rngWrapper = m_rndmSvc->getEngine(this, streamName);
89 rngWrapper->setSeed( streamName, ctx.slot(), randomSeedOffset, ctx.eventID().run_number() );
90 return rngWrapper->getEngine(ctx);
91}
void setSeed(const std::string &algName, const EventContext &ctx)
Set the random seed using a string (e.g.
Definition RNGWrapper.h:154
CLHEP::HepRandomEngine * getEngine(const EventContext &ctx) const
Retrieve the random engine corresponding to the provided EventContext.
Definition RNGWrapper.h:108
ServiceHandle< IAthRNGSvc > m_rndmSvc
Definition TauolaPP.h:50

◆ getRandomEngineDuringInitialize()

CLHEP::HepRandomEngine * TauolaPP::getRandomEngineDuringInitialize ( const std::string & streamName,
unsigned long int randomSeedOffset,
unsigned int conditionsRun = 1,
unsigned int lbn = 1 ) const
private

Definition at line 94 of file TauolaPP.cxx.

95{
96 const size_t slot=0;
97 EventContext ctx;
98 ctx.setSlot( slot );
99 ctx.setEventID (EventIDBase (conditionsRun,
100 EventIDBase::UNDEFEVT, // event
101 EventIDBase::UNDEFNUM, // timestamp
102 EventIDBase::UNDEFNUM, // timestamp ns
103 lbn));
105 Atlas::ExtendedEventContext( evtStore()->hiveProxyDict(),
106 conditionsRun) );
107 return getRandomEngine(streamName, randomSeedOffset, ctx);
108}
CLHEP::HepRandomEngine * getRandomEngine(const std::string &streamName, unsigned long int randomSeedOffset, const EventContext &ctx) const
Definition TauolaPP.cxx:85
void setExtendedEventContext(EventContext &ctx, ExtendedEventContext &&ectx)
Move an extended context into a context object.

◆ initialize()

StatusCode TauolaPP::initialize ( )
overridevirtual

Initialization of Tauola++ and setting of JO configurables.

Definition at line 40 of file TauolaPP.cxx.

40 {
41
42 ATH_CHECK(m_rndmSvc.retrieve());
44 const long* sip = p_rndmEngine->getSeeds();
45
46 // Setup and intialise Tauola Interface
47 using Tauolapp::Tauola;
48 Tauola::setSameParticleDecayMode(m_decay_mode_same);
49 Tauola::setOppositeParticleDecayMode(m_decay_mode_opp);
50 // etc.... see Tauola.h for the full list of configurables
51 // Note: some need to be set before (or after) calling Tauola::initialize();
52
53 // Tauola::setHiggsScalarPseudoscalarMixingAngle(atof(argv[5]));
54 // Tauola::setHiggsScalarPseudoscalarPDG(25);
55
56 Tauola::initialize();
57
58 Tauola::setEtaK0sPi(1,0,1); // switches to decay eta K0_S and pi0 1/0 on/off.
59 Tauola::spin_correlation.setAll(m_spin_correlation);
60 Tauola::setRadiation(m_setRadiation);
61 Tauola::setRadiationCutOff(m_setRadiationCutOff);
62
63 //call RanLux generator for ++ part of Tauola
64 Tauola::setRandomGenerator(AthenaRandomGenerator);
65
66 //seeding tauola-fortran generator
67 // See tauola.f: the first parameter should be positive int <900000000
68 Tauola::setSeed(int(std::abs(sip[0])%(900000000)),0,0);
69
70 //setting tau mass
71 Tauolapp::parmas_.amtau=m_tau_mass;
72
73 return StatusCode::SUCCESS;
74}
BooleanProperty m_setRadiation
TAUOLA switch for radiative corrections for leptonic tau decays.
Definition TauolaPP.h:77
CLHEP::HepRandomEngine * getRandomEngineDuringInitialize(const std::string &streamName, unsigned long int randomSeedOffset, unsigned int conditionsRun=1, unsigned int lbn=1) const
Definition TauolaPP.cxx:94
IntegerProperty m_decay_mode_opp
TAUOLA decay mode of particles with opposite charge as "decay_particle".
Definition TauolaPP.h:68
IntegerProperty m_decay_mode_same
TAUOLA decay mode of particles with same charge as "decay_particle".
Definition TauolaPP.h:65
DoubleProperty m_tau_mass
tau mass to be taken by TAUOLA
Definition TauolaPP.h:71
DoubleProperty m_setRadiationCutOff
TAUOLA cut-off for radiative corrections.
Definition TauolaPP.h:80
IntegerProperty m_randomSeed
Seed for random number engine.
Definition TauolaPP.h:56
IntegerProperty m_dsid
Definition TauolaPP.h:53
static CLHEP::HepRandomEngine * p_rndmEngine
Definition TauolaPP.h:35
BooleanProperty m_spin_correlation
TAUOLA switch for spin effects.
Definition TauolaPP.h:74

◆ 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()

virtual bool AthCommonAlgorithm< Gaudi::Algorithm >::isClonable ( ) const
inlineoverridevirtualinherited

Specify if the algorithm is clonable.

Only relevant for non-reentrant algorithms. Actual number of clones needs to be set via the "Cardinality" property.

Reimplemented in AFP_DigiTop, AlgB, AlgT, BCM_Digitization, CscDigitBuilder, CscDigitToCscRDO, G4AtlasAlg, G4RunAlg, HGTD_Digitization, HiveAlgBase, InDet::GNNSeedingTrackMaker, InDet::SCT_Clusterization, InDet::SiSPGNNTrackMaker, InDet::SiSPSeededTrackFinder, InDet::SiTrackerSpacePointFinder, ISF::SimKernelMT, ITk::StripDigitization, ITkPixelCablingAlg, ITkStripCablingAlg, LArHitEMapMaker, LArTTL1Maker, LUCID_DigiTop, LVL1::L1TopoSimulation, MergeCalibHits, MergeGenericMuonSimHitColl, MergeHijingPars, MergeMcEventCollection, MergeTrackRecordCollection, MergeTruthJets, MergeTruthParticles, MuonDigitizer, PileUpMTAlg, PixelDigitization, RoIBResultToxAOD, SCT_ByteStreamErrorsTestAlg, SCT_CablingCondAlgFromCoraCool, SCT_CablingCondAlgFromText, SCT_ConditionsParameterTestAlg, SCT_ConditionsSummaryTestAlg, SCT_ConfigurationConditionsTestAlg, SCT_Digitization, SCT_FlaggedConditionTestAlg, SCT_LinkMaskingTestAlg, SCT_MajorityConditionsTestAlg, SCT_ModuleVetoTestAlg, SCT_MonitorConditionsTestAlg, SCT_PrepDataToxAOD, SCT_RawDataToxAOD, SCT_ReadCalibChipDataTestAlg, SCT_ReadCalibDataTestAlg, SCT_RODVetoTestAlg, SCT_SensorsTestAlg, SCT_SiliconConditionsTestAlg, SCT_StripVetoTestAlg, SCT_TdaqEnabledTestAlg, SCT_TestCablingAlg, SCTEventFlagWriter, SCTRawDataProvider, SCTSiLorentzAngleTestAlg, SCTSiPropertiesTestAlg, SGInputLoader, Simulation::BeamEffectsAlg, TileHitVecToCnt, TileMuonFitter, TilePulseForTileMuonReceiver, TileRawChannelMaker, TRTDigitization, and ZDC_DigiTop.

Definition at line 68 of file AthCommonAlgorithm.h.

68 {
69 return true;
70 }

◆ isReEntrant()

virtual bool AthAlgorithm::isReEntrant ( ) const
inlinefinaloverrideprotectedvirtualinherited

Legacy algorithms are not thread-safe.

Definition at line 47 of file AthAlgorithm.h.

47{ return false; }

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

◆ reseedRandomEngine()

void TauolaPP::reseedRandomEngine ( const std::string & streamName,
const EventContext & ctx )
private

Definition at line 77 of file TauolaPP.cxx.

78{
79 long seeds[7];
80 ATHRNG::calculateSeedsMC21(seeds, streamName, ctx.eventID().event_number(), m_dsid, m_randomSeed);
81 p_rndmEngine->setSeeds(seeds, 0); // NOT THREAD-SAFE
82}
void calculateSeedsMC21(long *seeds, const std::string &algName, uint64_t ev, uint64_t run, uint64_t offset=0)
Set the random seed using a string (e.g.

◆ setFilterPassed()

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

Set filter decision:

Reimplemented in AthFilterAlgorithm.

Definition at line 99 of file AthCommonAlgorithm.h.

99 {
101 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const
Set filter decision:

◆ sysExecute()

StatusCode AthCommonAlgorithm< 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.

Reimplemented in AthAnalysisAlgorithm.

Definition at line 80 of file AthCommonAlgorithm.cxx.

41{
42 return BaseAlg::sysExecute (ctx);
43}

◆ sysInitialize()

StatusCode AthCommonAlgorithm< 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 AthAnalysisAlgorithm, AthFilterAlgorithm, AthHistogramAlgorithm, HypoBase, InputMakerBase, and PyAthena::Alg.

Definition at line 60 of file AthCommonAlgorithm.cxx.

71 {
73
74 if (sc.isFailure()) {
75 return sc;
76 }
77
78 ServiceHandle<ICondSvc> cs("CondSvc",name());
79 for (auto h : outputHandles()) {
80 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
81 // do this inside the loop so we don't create the CondSvc until needed
82 if ( cs.retrieve().isFailure() ) {
83 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
85 }
86 if (cs->regHandle(this,*h).isFailure()) {
88 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
89 << " with CondSvc");
90 }
91 }
92 }
93 return sc;
94}
#define ATH_MSG_ERROR(x)
#define ATH_MSG_WARNING(x)
virtual StatusCode sysInitialize() override
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_decay_mode_opp

IntegerProperty TauolaPP::m_decay_mode_opp {this, "decay_mode_opposite", 2}
private

TAUOLA decay mode of particles with opposite charge as "decay_particle".

Definition at line 68 of file TauolaPP.h.

68{this, "decay_mode_opposite", 2};

◆ m_decay_mode_same

IntegerProperty TauolaPP::m_decay_mode_same {this, "decay_mode_same", 1}
private

TAUOLA decay mode of particles with same charge as "decay_particle".

Definition at line 65 of file TauolaPP.h.

65{this, "decay_mode_same", 1};

◆ m_decay_particle

IntegerProperty TauolaPP::m_decay_particle {this, "decay_particle", 15}
private

PDG ID of particle to study.

Definition at line 62 of file TauolaPP.h.

62{this, "decay_particle", 15};

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

IntegerProperty TauolaPP::m_dsid {this, "Dsid", 999999}
private

Definition at line 53 of file TauolaPP.h.

53{this, "Dsid", 999999};

◆ 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 AthCommonAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

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

Empty if no symlinks were found.

Definition at line 108 of file AthCommonAlgorithm.h.

◆ m_key

StringProperty TauolaPP::m_key {this, "McEventKey", "GEN_EVENT"}
private

Event record container key - FIXME should be using Read/WriteHandles here.

Definition at line 47 of file TauolaPP.h.

47{this, "McEventKey", "GEN_EVENT"};

◆ m_randomSeed

IntegerProperty TauolaPP::m_randomSeed {this, "RandomSeed", 1234567, "Random seed for the built-in random engine"}
private

Seed for random number engine.

Definition at line 56 of file TauolaPP.h.

56{this, "RandomSeed", 1234567, "Random seed for the built-in random engine"}; // FIXME make this into an unsigned long int?

◆ m_rndmSvc

ServiceHandle<IAthRNGSvc> TauolaPP::m_rndmSvc {this, "RndmSvc", "AthRNGSvc"}
private

Definition at line 50 of file TauolaPP.h.

50{this, "RndmSvc", "AthRNGSvc"};

◆ m_setRadiation

BooleanProperty TauolaPP::m_setRadiation {this, "setRadiation", true}
private

TAUOLA switch for radiative corrections for leptonic tau decays.

Definition at line 77 of file TauolaPP.h.

77{this, "setRadiation", true};

◆ m_setRadiationCutOff

DoubleProperty TauolaPP::m_setRadiationCutOff {this, "setRadiationCutOff", 0.01}
private

TAUOLA cut-off for radiative corrections.

Definition at line 80 of file TauolaPP.h.

80{this, "setRadiationCutOff", 0.01};

◆ m_spin_correlation

BooleanProperty TauolaPP::m_spin_correlation {this, "spin_correlation", true}
private

TAUOLA switch for spin effects.

Definition at line 74 of file TauolaPP.h.

74{this, "spin_correlation", true};

◆ m_tau_mass

DoubleProperty TauolaPP::m_tau_mass {this, "tau_mass", 1.77684}
private

tau mass to be taken by TAUOLA

Definition at line 71 of file TauolaPP.h.

71{this, "tau_mass", 1.77684};

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

◆ p_rndmEngine

CLHEP::HepRandomEngine * TauolaPP::p_rndmEngine = nullptr
static

Definition at line 35 of file TauolaPP.h.


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