Belle II Software development
TauDecayModeModule Class Reference

Module to classify tau decay events according to a mapping given by the user or with a default mapping based on the TauolaBelle2 decay list. More...

#include <TauDecayModeModule.h>

Inheritance diagram for TauDecayModeModule:
Module PathElement

Public Types

enum  EModulePropFlags {
  c_Input = 1 ,
  c_Output = 2 ,
  c_ParallelProcessingCertified = 4 ,
  c_HistogramManager = 8 ,
  c_InternalSerializer = 16 ,
  c_TerminateInAllProcesses = 32 ,
  c_DontCollectStatistics = 64
}
 Each module can be tagged with property flags, which indicate certain features of the module. More...
 
typedef ModuleCondition::EAfterConditionPath EAfterConditionPath
 Forward the EAfterConditionPath definition from the ModuleCondition.
 

Public Member Functions

 TauDecayModeModule ()
 Constructor: Sets the description, the properties and the parameters of the module.
 
virtual void initialize () override
 Initializes the module.
 
virtual void event () override
 Method is called for each event.
 
virtual std::vector< std::string > getFileNames (bool outputFiles)
 Return a list of output filenames for this modules.
 
virtual void beginRun ()
 Called when entering a new run.
 
virtual void endRun ()
 This method is called if the current run ends.
 
virtual void terminate ()
 This method is called at the end of the event processing.
 
const std::string & getName () const
 Returns the name of the module.
 
const std::string & getType () const
 Returns the type of the module (i.e.
 
const std::string & getPackage () const
 Returns the package this module is in.
 
const std::string & getDescription () const
 Returns the description of the module.
 
void setName (const std::string &name)
 Set the name of the module.
 
void setPropertyFlags (unsigned int propertyFlags)
 Sets the flags for the module properties.
 
LogConfiggetLogConfig ()
 Returns the log system configuration.
 
void setLogConfig (const LogConfig &logConfig)
 Set the log system configuration.
 
void setLogLevel (int logLevel)
 Configure the log level.
 
void setDebugLevel (int debugLevel)
 Configure the debug messaging level.
 
void setAbortLevel (int abortLevel)
 Configure the abort log level.
 
void setLogInfo (int logLevel, unsigned int logInfo)
 Configure the printed log information for the given level.
 
void if_value (const std::string &expression, const std::shared_ptr< Path > &path, EAfterConditionPath afterConditionPath=EAfterConditionPath::c_End)
 Add a condition to the module.
 
void if_false (const std::shared_ptr< Path > &path, EAfterConditionPath afterConditionPath=EAfterConditionPath::c_End)
 A simplified version to add a condition to the module.
 
void if_true (const std::shared_ptr< Path > &path, EAfterConditionPath afterConditionPath=EAfterConditionPath::c_End)
 A simplified version to set the condition of the module.
 
bool hasCondition () const
 Returns true if at least one condition was set for the module.
 
const ModuleConditiongetCondition () const
 Return a pointer to the first condition (or nullptr, if none was set)
 
const std::vector< ModuleCondition > & getAllConditions () const
 Return all set conditions for this module.
 
bool evalCondition () const
 If at least one condition was set, it is evaluated and true returned if at least one condition returns true.
 
std::shared_ptr< PathgetConditionPath () const
 Returns the path of the last true condition (if there is at least one, else reaturn a null pointer).
 
Module::EAfterConditionPath getAfterConditionPath () const
 What to do after the conditional path is finished.
 
std::vector< std::shared_ptr< Path > > getAllConditionPaths () const
 Return all condition paths currently set (no matter if the condition is true or not).
 
bool hasProperties (unsigned int propertyFlags) const
 Returns true if all specified property flags are available in this module.
 
bool hasUnsetForcedParams () const
 Returns true and prints error message if the module has unset parameters which the user has to set in the steering file.
 
const ModuleParamListgetParamList () const
 Return module param list.
 
template<typename T >
ModuleParam< T > & getParam (const std::string &name) const
 Returns a reference to a parameter.
 
bool hasReturnValue () const
 Return true if this module has a valid return value set.
 
int getReturnValue () const
 Return the return value set by this module.
 
std::shared_ptr< PathElementclone () const override
 Create an independent copy of this module.
 
std::shared_ptr< boost::python::list > getParamInfoListPython () const
 Returns a python list of all parameters.
 

Static Public Member Functions

static void exposePythonAPI ()
 Exposes methods of the Module class to Python.
 

Protected Member Functions

virtual void def_initialize ()
 Wrappers to make the methods without "def_" prefix callable from Python.
 
virtual void def_beginRun ()
 Wrapper method for the virtual function beginRun() that has the implementation to be used in a call from Python.
 
virtual void def_event ()
 Wrapper method for the virtual function event() that has the implementation to be used in a call from Python.
 
virtual void def_endRun ()
 This method can receive that the current run ends as a call from the Python side.
 
virtual void def_terminate ()
 Wrapper method for the virtual function terminate() that has the implementation to be used in a call from Python.
 
void setDescription (const std::string &description)
 Sets the description of the module.
 
void setType (const std::string &type)
 Set the module type.
 
template<typename T >
void addParam (const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
 Adds a new parameter to the module.
 
template<typename T >
void addParam (const std::string &name, T &paramVariable, const std::string &description)
 Adds a new enforced parameter to the module.
 
void setReturnValue (int value)
 Sets the return value for this module as integer.
 
void setReturnValue (bool value)
 Sets the return value for this module as bool.
 
void setParamList (const ModuleParamList &params)
 Replace existing parameter list.
 

Protected Attributes

std::string m_printmode
 Parameter passed by the user to indicated the informationt to be printed.
 

Private Member Functions

void AnalyzeTauPairEvent ()
 Analyze a generated tau pair event.
 
int TauolaBelle2DecayMode (const std::string &s, int chg)
 Classifies the decays of the event and assigns a decay mode.
 
int getRecursiveMotherCharge (const MCParticle *mc)
 Identifies particles coming from tau decays.
 
void IdentifyTauPair ()
 Identifies if the event is a generated tau pair.
 
int getProngOfDecay (const MCParticle &mc)
 Identifies the number of charged final state particles in the decay.
 
double getEgstar (const std::vector< int > &vec_radgam, const MCParticle &mc)
 Energy of the radiative photon in tau rest frame.
 
std::list< ModulePtrgetModules () const override
 no submodules, return empty list
 
std::string getPathString () const override
 return the module name.
 
void setParamPython (const std::string &name, const boost::python::object &pyObj)
 Implements a method for setting boost::python objects.
 
void setParamPythonDict (const boost::python::dict &dictionary)
 Implements a method for reading the parameter values from a boost::python dictionary.
 

Private Attributes

StoreObjPtr< TauPairDecaym_tauDecay
 pointer to tau pair decay objects
 
StoreObjPtr< EventMetaDatam_event_metadata
 event number
 
int m_taum_no
 number of tau- unclassified events
 
int m_taup_no
 number of tau+ unclassified events
 
StoreArray< MCParticleMCParticles
 StoreArray of MCParticles.
 
std::map< std::string, int > mode_decay_minus
 Mapping for tau- decays.
 
std::map< std::string, int > mode_decay_plus
 Mapping for tau+ decays.
 
std::string m_tauminusdecaymode
 Variable name for the decay mode of the tau-.
 
std::string m_tauplusdecaymode
 Variable name for the decay mode of the tau+.
 
Int_t m_mmode
 ID of the decay channel of tau-.
 
Int_t m_pmode
 ID of the decay channel of tau+.
 
Int_t m_mprong
 Prong of the decay channel of tau-.
 
Int_t m_pprong
 Prong of the decay channel of tau+.
 
double m_megstar
 Energy of radiative photon from tau-.
 
double m_pegstar
 Energy of radiative photon from tau+.
 
bool tauPair
 Boolean variable used to identify tau event.
 
int numOfTauMinus
 Number of tau- in the event.
 
int numOfTauPlus
 Number of tau+ in the event.
 
int idOfTauMinus
 Index of the generated tau-.
 
int idOfTauPlus
 Index of the generated tau+.
 
std::string m_file_minus
 Alternative mapping for tau-.
 
std::string m_file_plus
 Alternative mapping for tau+.
 
bool m_isEtaPizPizPizFromTauMinus
 Flag for eta->pi0pi0pi0 decays from tau-.
 
bool m_isEtaPizPizPizFromTauPlus
 Flag for eta->pi0pi0pi0 decays from tau+.
 
bool m_isOmegaPimPipFromTauMinus
 Flag for omega->pi-pi+ decays from tau-.
 
bool m_isOmegaPimPipFromTauPlus
 Flag for omega->pi-pi+ decays from tau+.
 
std::vector< int > vec_nut
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_anut
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_numu
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_anumu
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_nue
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_anue
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_em
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_ep
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_mum
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_mup
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_pim
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_pip
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_km
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_kp
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_apro
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_pro
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_pi0
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_k0s
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_k0l
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_eta
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_omega
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_etapr
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_phi
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_rhom
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_rhop
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_rho0
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_kstarm
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_kstarp
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_kstar0
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_kstar0_br
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a1m
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a1p
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a00_980
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a0m_980
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a0p_980
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a00_1450
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a0m_1450
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_a0p_1450
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_b1m
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_b1p
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_f1
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_f0
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_lambda
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_lmb_br
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_alpha
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_gam
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_radgam_taum
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_radgam_taup
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_dau_tauminus
 Variable name of the vector where particles identified in the event are stored.
 
std::vector< int > vec_dau_tauplus
 Variable name of the vector where particles identified in the event are stored.
 
std::string m_name
 The name of the module, saved as a string (user-modifiable)
 
std::string m_type
 The type of the module, saved as a string.
 
std::string m_package
 Package this module is found in (may be empty).
 
std::string m_description
 The description of the module.
 
unsigned int m_propertyFlags
 The properties of the module as bitwise or (with |) of EModulePropFlags.
 
LogConfig m_logConfig
 The log system configuration of the module.
 
ModuleParamList m_moduleParamList
 List storing and managing all parameter of the module.
 
bool m_hasReturnValue
 True, if the return value is set.
 
int m_returnValue
 The return value.
 
std::vector< ModuleConditionm_conditions
 Module condition, only non-null if set.
 

Static Private Attributes

static constexpr int finalStatePDGs [5] = { 11, 13, 211, 321, 2212 }
 PDG codes accepted as charged final state particles in generation: {e, mu, pi, K, p}.
 
static constexpr int Neutrinos [3] = { 12, 14, 16 }
 PDG codes of neutrinos in final state particles in generation: {nu_e, nu_mu, mu_tau}.
 
static constexpr int OrderedList [46]
 PDG codes of ORDERED particles.
 

Detailed Description

Module to classify tau decay events according to a mapping given by the user or with a default mapping based on the TauolaBelle2 decay list.

Definition at line 28 of file TauDecayModeModule.h.

Member Typedef Documentation

◆ EAfterConditionPath

Forward the EAfterConditionPath definition from the ModuleCondition.

Definition at line 88 of file Module.h.

Member Enumeration Documentation

◆ EModulePropFlags

enum EModulePropFlags
inherited

Each module can be tagged with property flags, which indicate certain features of the module.

Enumerator
c_Input 

This module is an input module (reads data).

c_Output 

This module is an output module (writes data).

c_ParallelProcessingCertified 

This module can be run in parallel processing mode safely (All I/O must be done through the data store, in particular, the module must not write any files.)

c_HistogramManager 

This module is used to manage histograms accumulated by other modules.

c_InternalSerializer 

This module is an internal serializer/deserializer for parallel processing.

c_TerminateInAllProcesses 

When using parallel processing, call this module's terminate() function in all processes().

This will also ensure that there is exactly one process (single-core if no parallel modules found) or at least one input, one main and one output process.

c_DontCollectStatistics 

No statistics is collected for this module.

Definition at line 77 of file Module.h.

77 {
78 c_Input = 1,
79 c_Output = 2,
85 };
@ c_HistogramManager
This module is used to manage histograms accumulated by other modules.
Definition: Module.h:81
@ c_Input
This module is an input module (reads data).
Definition: Module.h:78
@ c_DontCollectStatistics
No statistics is collected for this module.
Definition: Module.h:84
@ c_ParallelProcessingCertified
This module can be run in parallel processing mode safely (All I/O must be done through the data stor...
Definition: Module.h:80
@ c_InternalSerializer
This module is an internal serializer/deserializer for parallel processing.
Definition: Module.h:82
@ c_Output
This module is an output module (writes data).
Definition: Module.h:79
@ c_TerminateInAllProcesses
When using parallel processing, call this module's terminate() function in all processes().
Definition: Module.h:83

Constructor & Destructor Documentation

◆ TauDecayModeModule()

Constructor: Sets the description, the properties and the parameters of the module.

Definition at line 63 of file TauDecayModeModule.cc.

63 : Module(), m_taum_no(0), m_taup_no(0), m_mmode(-2), m_pmode(-2),
64 m_mprong(0), m_pprong(0), m_megstar(0), m_pegstar(0),
68{
69 // Set module properties
70 setDescription("Module to identify generated tau pair decays, using MCParticle information."
71 "By default, each tau decay is numbered as TauolaBelle2DecayMode [Ref: BELLE2-NOTE-PH-2020-055]");
72 //Parameter definition
73 addParam("printmode", m_printmode, "Printout more information from each event", std::string("default"));
74 addParam("file_minus", m_file_minus, "Path for an alternative mapping for tau- decays", std::string(""));
75 addParam("file_plus", m_file_plus, "Path for an alternative mapping for tau+ decays", std::string(""));
76}
void setDescription(const std::string &description)
Sets the description of the module.
Definition: Module.cc:214
Module()
Constructor.
Definition: Module.cc:30
Int_t m_mprong
Prong of the decay channel of tau-.
int numOfTauPlus
Number of tau+ in the event.
Int_t m_pprong
Prong of the decay channel of tau+.
std::string m_file_plus
Alternative mapping for tau+.
bool m_isEtaPizPizPizFromTauMinus
Flag for eta->pi0pi0pi0 decays from tau-.
double m_pegstar
Energy of radiative photon from tau+.
Int_t m_mmode
ID of the decay channel of tau-.
bool m_isOmegaPimPipFromTauMinus
Flag for omega->pi-pi+ decays from tau-.
int m_taum_no
number of tau- unclassified events
bool m_isOmegaPimPipFromTauPlus
Flag for omega->pi-pi+ decays from tau+.
bool tauPair
Boolean variable used to identify tau event.
int idOfTauMinus
Index of the generated tau-.
Int_t m_pmode
ID of the decay channel of tau+.
int numOfTauMinus
Number of tau- in the event.
int idOfTauPlus
Index of the generated tau+.
std::string m_printmode
Parameter passed by the user to indicated the informationt to be printed.
bool m_isEtaPizPizPizFromTauPlus
Flag for eta->pi0pi0pi0 decays from tau+.
double m_megstar
Energy of radiative photon from tau-.
std::string m_file_minus
Alternative mapping for tau-.
int m_taup_no
number of tau+ unclassified events
void addParam(const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module.
Definition: Module.h:560

Member Function Documentation

◆ AnalyzeTauPairEvent()

void AnalyzeTauPairEvent ( )
private

Analyze a generated tau pair event.

Definition at line 150 of file TauDecayModeModule.cc.

151{
152 // Clear local vectors
153 vec_nut.clear();
154 vec_anut.clear();
155 vec_numu.clear();
156 vec_anumu.clear();
157 vec_nue.clear();
158 vec_anue.clear();
159 vec_em.clear();
160 vec_ep.clear();
161 vec_mum.clear();
162 vec_mup.clear();
163 vec_pim.clear();
164 vec_pip.clear();
165 vec_km.clear();
166 vec_kp.clear();
167 vec_apro.clear();
168 vec_pro.clear();
169 vec_pi0.clear();
170 vec_k0s.clear();
171 vec_k0l.clear();
172 vec_eta.clear();
173 vec_omega.clear();
174 vec_etapr.clear();
175 vec_phi.clear();
176 vec_rhom.clear();
177 vec_rhop.clear();
178 vec_rho0.clear();
179 vec_kstarm.clear();
180 vec_kstarp.clear();
181 vec_kstar0.clear();
182 vec_kstar0_br.clear();
183 vec_a1m.clear();
184 vec_a1p.clear();
185 vec_a00_980.clear();
186 vec_a0m_980.clear();
187 vec_a0p_980.clear();
188 vec_a00_1450.clear();
189 vec_a0m_1450.clear();
190 vec_a0p_1450.clear();
191 vec_b1m.clear();
192 vec_b1p.clear();
193 vec_f1.clear();
194 vec_f0.clear();
195 vec_lambda.clear();
196 vec_lmb_br.clear();
197 vec_alpha.clear();
198 vec_gam.clear();
199 vec_radgam_taum.clear();
200 vec_radgam_taup.clear();
201 //
202 map<int, std::vector<int>> map_vec;
203 //
204 map_vec[11] = vec_em;
205 map_vec[-11] = vec_ep;
206 map_vec[12] = vec_nue;
207 map_vec[-12] = vec_anue;
208 map_vec[13] = vec_mum;
209 map_vec[-13] = vec_mup;
210 map_vec[14] = vec_numu;
211 map_vec[-14] = vec_anumu;
212 map_vec[16] = vec_nut;
213 map_vec[-16] = vec_anut;
214 map_vec[-211] = vec_pim;
215 map_vec[211] = vec_pip;
216 map_vec[-321] = vec_km;
217 map_vec[321] = vec_kp;
218 map_vec[-2212] = vec_apro;
219 map_vec[2212] = vec_pro;
220 map_vec[111] = vec_pi0;
221 map_vec[310] = vec_k0s;
222 map_vec[130] = vec_k0l;
223 map_vec[221] = vec_eta;
224 map_vec[223] = vec_omega;
225 map_vec[331] = vec_etapr;
226 map_vec[333] = vec_phi;
227 map_vec[-213] = vec_rhom;
228 map_vec[213] = vec_rhop;
229 map_vec[113] = vec_rho0;
230 map_vec[-323] = vec_kstarm;
231 map_vec[323] = vec_kstarp;
232 map_vec[313] = vec_kstar0;
233 map_vec[-313] = vec_kstar0_br;
234 map_vec[-20213] = vec_a1m;
235 map_vec[20213] = vec_a1p;
236 map_vec[-9000211] = vec_a0m_980;
237 map_vec[9000211] = vec_a0p_980;
238 map_vec[9000111] = vec_a00_980;
239 map_vec[-10211] = vec_a0m_1450;
240 map_vec[10211] = vec_a0p_1450;
241 map_vec[10111] = vec_a00_1450;
242 map_vec[-10213] = vec_b1m;
243 map_vec[10213] = vec_b1p;
244 map_vec[20223] = vec_f1;
245 map_vec[9010221] = vec_f0;
246 map_vec[3122] = vec_lambda;
247 map_vec[-3122] = vec_lmb_br;
248 map_vec[94144] = vec_alpha;
249 map_vec[22] = vec_gam;
250
251 bool TauMinusIsLeptonicDecay = false;
252 bool TauPlusIsLeptonicDecay = false;
253
254 bool elecFirst = true;
255 bool muonFirst = true;
256
257 bool isPiPizGamTauMinusFirst = true;
258 bool isPiPizGamTauPlusFirst = true;
259
260 bool isLFVTauMinus2BodyDecayFirst = true;
261 bool isLFVTauPlus2BodyDecayFirst = true;
262
263 bool isChargedRhoFromTauMinusFirst = true;
264 bool isChargedRhoFromTauPlusFirst = true;
265
266 bool isChargedA1FromTauMinusFirst = true;
267 bool isChargedA1FromTauPlusFirst = true;
268
269 bool isEtaPPGFromTauMinusFirst = true;
270 bool isEtaPPGFromTauPlusFirst = true;
271
272 bool isOmegaPizGamFromTauMinusFirst = true;
273 bool isOmegaPizGamFromTauPlusFirst = true;
274
275 bool isEtaPizPizPizFromTauMinusFirst = true;
276 bool isEtaPizPizPizFromTauPlusFirst = true;
277
280
281 bool isOmegaPimPipFromTauMinusFirst = true;
282 bool isOmegaPimPipFromTauPlusFirst = true;
283
286
287 // Loop of MCParticles
288 for (int i = 0; i < MCParticles.getEntries(); i++) {
289
290 MCParticle& p = *MCParticles[i];
291
292 int pdgid = p.getPDG();
293
294 if (pdgid == -Const::Klong.getPDGCode()) pdgid = -pdgid; // Strange feature in TauolaBelle2
295
296 // Special treatment for photons
297 bool accept_photon = false;
298
299 if (!p.hasStatus(MCParticle::c_PrimaryParticle))
300 continue; // only consider particles coming from generator, e.g. discard particles added by Geant4
301 if (p.isInitial()) continue; // pick e- e+, but not from the incoming beams
302
303 // Check IsLeptonicDecay first
304 if (abs(pdgid) == 12 || abs(pdgid) == 14) { // (anti-)nu_e or (anti-)nu_mu
305 int leptonicdecay = 0;
306 const MCParticle* mother = p.getMother(); // tau- or tau+
307 const vector<MCParticle*> daughters = mother->getDaughters();
308 for (MCParticle* d : daughters) {
309 int dauid = abs(d->getPDG());
310 if (dauid == 11 || dauid == 12 || dauid == 13 || dauid == 14 || dauid == 16) {
311 leptonicdecay++;
312 }
313 }
314 if (leptonicdecay == 3) {
315 if (mother->getPDG() == 15) TauMinusIsLeptonicDecay = true;
316 if (mother->getPDG() == -15) TauPlusIsLeptonicDecay = true;
317 }
318 }
319
320 else if (pdgid == Const::electron.getPDGCode() && elecFirst) {
321 elecFirst = false;
322 const MCParticle* mother = p.getMother();
323 if (not mother) continue; // In some low multiplicity generators there may be no mother
324 const vector<MCParticle*> daughters = mother->getDaughters();
325 int nElMinus = 0;
326 int nElPlus = 0;
327 stringstream elec_ss;
328 for (MCParticle* d : daughters) {
329 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
330 elec_ss << d->getPDG() << " ";
331 if (d->getPDG() == Const::electron.getPDGCode()) nElMinus++;
332 if (d->getPDG() == -Const::electron.getPDGCode()) nElPlus++;
333 }
334 if (nElMinus == 1 && nElPlus == 1) { // use this information in getRecursiveMotherCharge
335 B2DEBUG(19, "Mother of elec pair is = " << mother->getPDG() << " which has daughters : " << elec_ss.str());
336 }
337 }
338
339 else if (pdgid == Const::muon.getPDGCode() && muonFirst) {
340 muonFirst = false;
341 const MCParticle* mother = p.getMother();
342 if (not mother) continue; // In some low multiplicity generators there may be no mother
343 const vector<MCParticle*> daughters = mother->getDaughters();
344 int nMuMinus = 0;
345 int nMuPlus = 0;
346 stringstream muon_ss;
347 for (MCParticle* d : daughters) {
348 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
349 muon_ss << d->getPDG() << " ";
350 if (d->getPDG() == Const::muon.getPDGCode()) nMuMinus++;
351 if (d->getPDG() == -Const::muon.getPDGCode()) nMuPlus++;
352 }
353 if (nMuMinus == 1 && nMuPlus == 1) { // use this information in getRecursiveMotherCharge
354 B2DEBUG(19, "Mother of muon pair is = " << mother->getPDG() << " which has daughters : " << muon_ss.str());
355 }
356 }
357
358 // Photons from PHOTOS are radiative photons
359 else if (pdgid == Const::photon.getPDGCode() && p.hasStatus(MCParticle::c_IsPHOTOSPhoton)) {
361 if (chg < 0) vec_radgam_taum.push_back(i);
362 if (chg > 0) vec_radgam_taup.push_back(i);
363 }
364
365 // Photons from PHOTOS do not define tau decay mode
366 else if (pdgid == Const::photon.getPDGCode() && !p.hasStatus(MCParticle::c_IsPHOTOSPhoton)) {
367 const MCParticle* mother = p.getMother();
368 if (not mother) continue; // In some low multiplicity generators there may be no mother
369 int mothid = abs(mother->getPDG());
370
371 // check if the gamma comes from final state charged particles {e, mu, pi, K, p, b_1}
372 bool isRadiationfromFinalStateChargedParticle = false;
373 if (mothid == 11 ||
374 mothid == 13 ||
375 mothid == 211 ||
376 mothid == 321 ||
377 mothid == 2212 ||
378 mothid == 10213) {
379 isRadiationfromFinalStateChargedParticle = true;
380 }
381
382 // check if the gamma from ChargedRho
383 bool isRadiationFromChargedRho = false;
384 if (mothid == 213) {
385 int chg = getRecursiveMotherCharge(mother);
386 if (chg < 0 && isChargedRhoFromTauMinusFirst) {
387 isChargedRhoFromTauMinusFirst = false;
388 isRadiationFromChargedRho = true;
389 }
390 if (chg > 0 && isChargedRhoFromTauPlusFirst) {
391 isChargedRhoFromTauPlusFirst = false;
392 isRadiationFromChargedRho = true;
393 }
394 }
395
396 // check if the gamma from ChargedA1
397 bool isRadiationFromChargedA1 = false;
398 if (mothid == 20213) {
399 int chg = getRecursiveMotherCharge(mother);
400 if (chg < 0 && isChargedA1FromTauMinusFirst) {
401 isChargedA1FromTauMinusFirst = false;
402 isRadiationFromChargedA1 = true;
403 }
404 if (chg > 0 && isChargedA1FromTauPlusFirst) {
405 isChargedA1FromTauPlusFirst = false;
406 isRadiationFromChargedA1 = true;
407 }
408 }
409
410 // check if the gamma comes from intermediate W+- boson
411 bool isRadiationfromIntermediateWBoson = false;
412 if (mothid == 24) isRadiationfromIntermediateWBoson = true;
413
414 // check if it is a tau- -> pi- omega nu, omega -> pi0 gamma decay
415 // Note: TauolaBelle2 generator treats this a coherent production
416 // e.g. includes omega in the form factor but not as an explicit final state particle
417 bool isPiPizGam = false;
418 if (isRadiationfromIntermediateWBoson) {
419 const vector<MCParticle*> daughters = mother->getDaughters();
420 int nPiSisters = 0;
421 int nPizSisters = 0;
422 int nTotSisters = 0;
423 int nOtherSisters = 0;
424 for (MCParticle* d : daughters) {
425 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
426 nTotSisters++;
427 if (abs(d->getPDG()) == Const::pion.getPDGCode()) {
428 nPiSisters++;
429 } else if (abs(d->getPDG()) == Const::pi0.getPDGCode()) {
430 nPizSisters++;
431 } else if (abs(d->getPDG()) != Const::photon.getPDGCode()) {
432 nOtherSisters++;
433 }
434 }
435 // allow final state radiation from the tau lepton, but ignore information on number of photons for decay mode classifiction
436 if (nTotSisters >= 3 && nPiSisters == 1 && nPizSisters == 1 && nOtherSisters == 0) {
437 int chg = getRecursiveMotherCharge(mother);
438 if (chg < 0 && isPiPizGamTauMinusFirst) {
439 isPiPizGamTauMinusFirst = false;
440 isPiPizGam = true;
441 }
442 if (chg > 0 && isPiPizGamTauPlusFirst) {
443 isPiPizGamTauPlusFirst = false;
444 isPiPizGam = true;
445 }
446 }
447 }
448
449 // check if the gamma comes from tau
450 bool isRadiationfromTau = false;
451 if (mothid == 15) isRadiationfromTau = true;
452
453 // Photons from LeptonicTauDecays are radiative photons not added by PHOTOS
454 if (isRadiationfromTau) {
456 if (chg < 0 && TauMinusIsLeptonicDecay) vec_radgam_taum.push_back(i);
457 if (chg > 0 && TauPlusIsLeptonicDecay) vec_radgam_taup.push_back(i);
458 }
459
460 // check if the gamma comes from 2 body LFV decays of tau, e.g. tau- -> e-/mu- gamma with arbitrary number of extra photon radiations from PHOTOS/FSR
461 bool isLFVTau2BodyDecay = false;
462 if (isRadiationfromTau) {
463 bool hasNeutrinoAsSister = false;
464 int numChargedSister = 0;
465 int numNeutralNonNeutrinoNonPhotonSister = 0;
466 const vector<MCParticle*> daughters = mother->getDaughters();
467 for (MCParticle* d : daughters) {
468 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
469 hasNeutrinoAsSister = find(begin(Neutrinos), end(Neutrinos), abs(d->getPDG())) != end(Neutrinos);
470 if (hasNeutrinoAsSister) break;
471 }
472 if (!hasNeutrinoAsSister) {
473 for (MCParticle* d : daughters) {
474 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
475 bool isChargedFinalState = find(begin(finalStatePDGs), end(finalStatePDGs), abs(d->getPDG())) != end(finalStatePDGs);
476 if (isChargedFinalState) {
477 numChargedSister++;
478 } else if (d->getPDG() != Const::photon.getPDGCode()) {
479 numNeutralNonNeutrinoNonPhotonSister++;
480 }
481 }
482 if (numChargedSister == 1 && numNeutralNonNeutrinoNonPhotonSister == 0) {
483 if (mother->getPDG() == 15 && isLFVTauMinus2BodyDecayFirst) {
484 isLFVTauMinus2BodyDecayFirst = false;
485 isLFVTau2BodyDecay = true;
486 }
487 if (mother->getPDG() == -15 && isLFVTauPlus2BodyDecayFirst) {
488 isLFVTauPlus2BodyDecayFirst = false;
489 isLFVTau2BodyDecay = true;
490 }
491 }
492 }
493 B2DEBUG(19, "hasNeutrinoAsSister = " << hasNeutrinoAsSister
494 << " numChargedSister = " << numChargedSister
495 << " numNeutralNonNeutrinoNonPhotonSister = " << numNeutralNonNeutrinoNonPhotonSister
496 << " isLFVTau2BodyDecay = " << isLFVTau2BodyDecay);
497 }
498
499 bool isPi0GG = false;
500 bool isEtaGG = false;
501 bool isEtpGG = false;
502 bool isPi0GEE = false;
503 bool isEtaPPG = false;
504 bool isOmPizG = false;
505 if (mothid == 111 || mothid == 221 || mothid == 331 || mothid == 223) {
506 const vector<MCParticle*> daughters = mother->getDaughters();
507 int numberofTotalDaughters = 0;
508 int numberOfPhotonDaughters = 0;
509 int numberOfElectronDaughters = 0;
510 int numberOfPionDaughters = 0;
511 int numberOfPizDaughters = 0;
512 for (MCParticle* d : daughters) {
513 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
514 numberofTotalDaughters ++;
515 if (abs(d->getPDG()) == Const::photon.getPDGCode()) numberOfPhotonDaughters++;
516 if (abs(d->getPDG()) == Const::electron.getPDGCode()) numberOfElectronDaughters++;
517 if (abs(d->getPDG()) == Const::pion.getPDGCode()) numberOfPionDaughters++;
518 if (abs(d->getPDG()) == Const::pi0.getPDGCode()) numberOfPizDaughters++;
519 }
520 if (numberofTotalDaughters == 2 && numberOfPhotonDaughters == 2) {
521 if (mothid == Const::pi0.getPDGCode()) isPi0GG = true;
522 if (mothid == 221) isEtaGG = true;
523 if (mothid == 331) isEtpGG = true;
524 }
525 if (numberofTotalDaughters >= 3 && numberOfPhotonDaughters >= 1 && numberOfElectronDaughters == 2 && numberOfPionDaughters == 0
526 && numberOfPizDaughters == 0) {
527 if (mothid == Const::pi0.getPDGCode()) isPi0GEE = true;
528 }
529 if (numberofTotalDaughters >= 3 && numberOfPhotonDaughters >= 1 && numberOfPizDaughters == 0 && numberOfPionDaughters == 2) {
530 if (mothid == 221) {
531 int chg = getRecursiveMotherCharge(mother);
532 if (chg < 0 && isEtaPPGFromTauMinusFirst) {
533 isEtaPPGFromTauMinusFirst = false;
534 isEtaPPG = true;
535 }
536 if (chg > 0 && isEtaPPGFromTauPlusFirst) {
537 isEtaPPGFromTauPlusFirst = false;
538 isEtaPPG = true;
539 }
540 }
541 }
542 if (numberofTotalDaughters >= 2 && numberOfPhotonDaughters >= 1 && numberOfPizDaughters == 1 && numberOfPionDaughters == 0) {
543 if (mothid == 223) {
544 int chg = getRecursiveMotherCharge(mother);
545 if (chg < 0 && isOmegaPizGamFromTauMinusFirst) {
546 isOmegaPizGamFromTauMinusFirst = false;
547 isOmPizG = true;
548 }
549 if (chg > 0 && isOmegaPizGamFromTauPlusFirst) {
550 isOmegaPizGamFromTauPlusFirst = false;
551 isOmPizG = true;
552 }
553 }
554 }
555 }
556
557 B2DEBUG(19, "isRadiationfromFinalStateChargedParticle = " << isRadiationfromFinalStateChargedParticle);
558 B2DEBUG(19, "isRadiationFromChargedRho = " << isRadiationFromChargedRho);
559 B2DEBUG(19, "isRadiationFromChargedA1 = " << isRadiationFromChargedA1);
560 B2DEBUG(19, "isRadiationfromIntermediateWBoson = " << isRadiationfromIntermediateWBoson << " isPiPizGam = " << isPiPizGam);
561 B2DEBUG(19, "isRadiationfromTau = " << isRadiationfromTau << " isLFVTau2BodyDecay = " << isLFVTau2BodyDecay);
562 B2DEBUG(19, "isPi0GG = " << isPi0GG << " isEtaGG = " << isEtaGG << " isEtpGG = " << isEtpGG << " isPi0GEE = " << isPi0GEE);
563 B2DEBUG(19, "isEtaPPG = " << isEtaPPG << " isOmPizG = " << isOmPizG);
564
565 // accept photons if (isRadiationfromFinalStateChargedParticle is false) or
566 // if (isRadiationfromIntermediateWBoson is false) or
567 // if (isRadiationfromTau is true) {gamma is from 2 body LFV decays of tau} or
568 // if the radiation is coming from any other decay [except pi0 -> gamma gamma, eta-> gamma gamma, eta' -> gamma gamma]
569 if (isRadiationfromFinalStateChargedParticle) {
570 } else if (isRadiationFromChargedRho) {
571 accept_photon = true;
572 } else if (isRadiationFromChargedA1) {
573 accept_photon = true;
574 } else if (isRadiationfromIntermediateWBoson) {
575 if (isPiPizGam) {
576 accept_photon = true;
577 }
578 } else if (isRadiationfromTau) { // accept one photon from tau -> (charged particle) + gamma [no neutrinos]
579 if (isLFVTau2BodyDecay) {
580 accept_photon = true;
581 }
582 } else if (isPi0GG) {
583 } else if (isEtaGG) {
584 } else if (isEtpGG) {
585 } else if (isPi0GEE) {
586 } else if (isEtaPPG) {
587 accept_photon = true;
588 } else if (isOmPizG) {
589 accept_photon = true;
590 }
591 }
592
593 // Without further analysis, it is NOT possible to separate
594 // tau- -> pi- 2pi0 eta (-> pi- pi+ pi0) nu decays [Mode 39] from
595 // tau- -> 2pi- pi+ eta (-> pi0 pi0 pi0) nu decays [Mode 42]
596
597 else if (pdgid == Const::pi0.getPDGCode() && (isEtaPizPizPizFromTauMinusFirst || isEtaPizPizPizFromTauPlusFirst)) {
598 const MCParticle* mother = p.getMother();
599 // In some low multiplicity generators there may be no mother
600 if (mother and (mother->getPDG() == 221)) { // eta -> pi0 pi0 pi0
601 const vector<MCParticle*> daughters = mother->getDaughters();
602 int nPizSisters = 0;
603 for (MCParticle* d : daughters) {
604 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
605 if (d->getPDG() == Const::pi0.getPDGCode()) nPizSisters++;
606 }
607 B2DEBUG(19, "nPizSisters = " << nPizSisters);
608 if (nPizSisters == 3) {
609 int chg = getRecursiveMotherCharge(mother);
610 if (chg < 0 && isEtaPizPizPizFromTauMinusFirst) {
611 isEtaPizPizPizFromTauMinusFirst = false;
613 }
614 if (chg > 0 && isEtaPizPizPizFromTauPlusFirst) {
615 isEtaPizPizPizFromTauPlusFirst = false;
617 }
618 }
619 }
620 }
621
622 // Without further analysis, it is NOT possible to separate
623 // tau- -> pi- 2pi0 omega (-> pi- pi+) nu decays [Mode 49] from
624 // tau- -> 2pi- pi+ 2pi0 nu decays [Mode 66]
625 // Note: TauolaBelle2 treats Mode 66 is coherent production,
626 // e.g. includes omega in the form factor but not as an explicit final state particle.
627 // Note2: omega is explicitly included in following mode:
628 // tau- -> pi- pi0 omega (-> pi- pi+ pi0) nu decays [Mode 130]
629 // which is where Mode 49 is mapped to if there is no omega->pi-pi+ decay
630
631 // Same confusion can also happen for
632 // tau- -> pi- pi0 omega (-> pi- pi+) nu decays [Mode 131]
633 // tau- -> pi- omega (-> pi- pi+ pi0) nu decays [Mode 236]
634
635 else if (pdgid == -Const::pion.getPDGCode() && (isOmegaPimPipFromTauMinusFirst || isOmegaPimPipFromTauPlusFirst)) {
636 const MCParticle* mother = p.getMother();
637 // In some low multiplicity generators there may be no mother
638 if (mother and (mother->getPDG() == 223)) { // omega -> pi- pi+
639 const vector<MCParticle*> daughters = mother->getDaughters();
640 int nOmegaDaughters = 0;
641 int nPimSisters = 0;
642 int nPipSisters = 0;
643 int nPizSisters = 0;
644 for (MCParticle* d : daughters) {
645 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
646 nOmegaDaughters++;
647 if (d->getPDG() == -Const::pion.getPDGCode()) nPimSisters++;
648 if (d->getPDG() == Const::pion.getPDGCode()) nPipSisters++;
649 if (d->getPDG() == Const::pi0.getPDGCode()) nPizSisters++;
650 }
651 B2DEBUG(19,
652 "nOmegaDaughters = " << nOmegaDaughters << " "
653 "nPimSisters = " << nPimSisters << " "
654 "nPipSisters = " << nPipSisters << " "
655 "nPizSisters = " << nPizSisters);
656 if (nOmegaDaughters >= 2 && nPimSisters == 1 && nPipSisters == 1 && nPizSisters == 0) { // allow omega->pi-pi+gama
657 int chg = getRecursiveMotherCharge(mother);
658 if (chg < 0 && isOmegaPimPipFromTauMinusFirst) {
659 isOmegaPimPipFromTauMinusFirst = false;
661 }
662 if (chg > 0 && isOmegaPimPipFromTauPlusFirst) {
663 isOmegaPimPipFromTauPlusFirst = false;
665 }
666 }
667 }
668 }
669 B2DEBUG(19,
670 "isEtaPizPizPizFromTauMinusFirst = " << isEtaPizPizPizFromTauMinusFirst << " "
671 "m_isEtaPizPizPizFromTauMinus = " << m_isEtaPizPizPizFromTauMinus << " "
672 "isEtaPizPizPizFromTauPlusFirst = " << isEtaPizPizPizFromTauPlusFirst << " "
673 "m_isEtaPizPizPizFromTauPlus = " << m_isEtaPizPizPizFromTauPlus
674 );
675 B2DEBUG(19,
676 "isOmegaPimPipFromTauMinusFirst = " << isOmegaPimPipFromTauMinusFirst << " "
677 "m_isOmegaPimPipFromTauMinus = " << m_isOmegaPimPipFromTauMinus << " "
678 "isOmegaPimPipFromTauPlusFirst = " << isOmegaPimPipFromTauPlusFirst << " "
679 "m_isOmegaPimPipFromTauPlus = " << m_isEtaPizPizPizFromTauPlus
680 );
681
682 // Fill up all the vector of particles
683 map<int, std::vector<int>>::iterator ite ;
684 for (ite = map_vec.begin(); ite != map_vec.end(); ++ite) {
685 if (pdgid == ite->first) {
686 if (pdgid == Const::photon.getPDGCode()) {
687 if (accept_photon) {
688 B2DEBUG(19, "Photon accepted");
689 ite-> second.push_back(i);
690 }
691 } else {
692 ite-> second.push_back(i);
693 }
694 break;
695 }
696 }
697
698 } // End of loop over MCParticles
699
700 vec_dau_tauminus.clear();
701 vec_dau_tauplus.clear();
702
703 map<int, std::vector<int>>::iterator itr ;
704 for (itr = map_vec.begin(); itr != map_vec.end(); ++itr) {
705 for (unsigned int i = 0; i < itr-> second.size(); i++) {
706 int ii = itr-> second[i];
708 if (chg < 0) vec_dau_tauminus.push_back(ii);
709 if (chg > 0) vec_dau_tauplus.push_back(ii);
710 }
711 }
712
714 std::string pdgname;
715
716 //make decay string for tau-
718 for (unsigned iorder = 0; iorder < 46; ++iorder) {
719 int ii = OrderedList[iorder];
720 //
721 for (unsigned int i = 0; i < vec_dau_tauminus.size(); i++) {
723 int pdg = p->getPDG();
724 if (pdg == -Const::Klong.getPDGCode()) pdg = -pdg; // Strange Feature in TauolaBelle2
725 if (pdg != ii) continue;
726 m_tauminusdecaymode.append(".");
727 if (pdg == 94144) {
728 pdgname = "alpha";
729 } else {
730 pdgname = databasePDG->GetParticle(pdg)->GetName();
731 }
732 m_tauminusdecaymode.append(pdgname);
733 }
734 }
735 //
737
738 //make decay string for tau+
740 for (unsigned iorder = 0; iorder < 46; ++iorder) {
741 int ii = OrderedList[iorder];
742 //
743 for (unsigned int i = 0; i < vec_dau_tauplus.size(); i++) {
745 int pdg = p->getPDG();
746 if (pdg == -Const::Klong.getPDGCode()) pdg = -pdg; // Strange Feature in TauolaBelle2
747 if (pdg != ii) continue;
748 m_tauplusdecaymode.append(".");
749 if (pdg == 94144) {
750 pdgname = "alpha";
751 } else {
752 pdgname = databasePDG->GetParticle(pdg)->GetName();
753 }
754 m_tauplusdecaymode.append(pdgname);
755 }
756 }
757 //
759
760}
int getPDGCode() const
PDG code.
Definition: Const.h:473
static const ParticleType pi0
neutral pion particle
Definition: Const.h:674
static const ChargedStable muon
muon particle
Definition: Const.h:660
static const ChargedStable pion
charged pion particle
Definition: Const.h:661
static const ParticleType Klong
K^0_L particle.
Definition: Const.h:678
static const ParticleType photon
photon particle
Definition: Const.h:673
static const ChargedStable electron
electron particle
Definition: Const.h:659
Replacement for TDatabasePDG that is filled from EvtGen's evt.pdl.
static EvtGenDatabasePDG * Instance()
Instance method that loads the EvtGen table.
A Class to store the Monte Carlo particle information.
Definition: MCParticle.h:32
@ c_IsPHOTOSPhoton
bit 8: Particle is an radiative photon from PHOTOS
Definition: MCParticle.h:63
@ c_PrimaryParticle
bit 0: Particle is primary particle.
Definition: MCParticle.h:47
std::vector< Belle2::MCParticle * > getDaughters() const
Get vector of all daughter particles, empty vector if none.
Definition: MCParticle.cc:52
int getPDG() const
Return PDG code of particle.
Definition: MCParticle.h:112
int getEntries() const
Get the number of objects in the array.
Definition: StoreArray.h:216
std::vector< int > vec_numu
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_em
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_omega
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_k0s
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_b1p
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_f1
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_apro
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_pi0
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_alpha
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_radgam_taum
Variable name of the vector where particles identified in the event are stored.
StoreArray< MCParticle > MCParticles
StoreArray of MCParticles.
std::vector< int > vec_anue
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_nue
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_a0p_980
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_a0m_1450
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_lmb_br
Variable name of the vector where particles identified in the event are stored.
int getRecursiveMotherCharge(const MCParticle *mc)
Identifies particles coming from tau decays.
std::vector< int > vec_phi
Variable name of the vector where particles identified in the event are stored.
static constexpr int Neutrinos[3]
PDG codes of neutrinos in final state particles in generation: {nu_e, nu_mu, mu_tau}.
std::string m_tauminusdecaymode
Variable name for the decay mode of the tau-.
std::vector< int > vec_a1p
Variable name of the vector where particles identified in the event are stored.
int TauolaBelle2DecayMode(const std::string &s, int chg)
Classifies the decays of the event and assigns a decay mode.
std::vector< int > vec_lambda
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_anut
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_f0
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_mum
Variable name of the vector where particles identified in the event are stored.
static constexpr int OrderedList[46]
PDG codes of ORDERED particles.
std::vector< int > vec_nut
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_kstar0_br
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_radgam_taup
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_a00_1450
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_kstar0
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_a0m_980
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_a00_980
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_a1m
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_rhop
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_pro
Variable name of the vector where particles identified in the event are stored.
std::string m_tauplusdecaymode
Variable name for the decay mode of the tau+.
std::vector< int > vec_pim
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_mup
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_pip
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_kstarp
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_kstarm
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_etapr
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_ep
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_k0l
Variable name of the vector where particles identified in the event are stored.
static constexpr int finalStatePDGs[5]
PDG codes accepted as charged final state particles in generation: {e, mu, pi, K, p}.
std::vector< int > vec_eta
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_km
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_anumu
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_dau_tauplus
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_rhom
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_gam
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_dau_tauminus
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_kp
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_b1m
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_rho0
Variable name of the vector where particles identified in the event are stored.
std::vector< int > vec_a0p_1450
Variable name of the vector where particles identified in the event are stored.

◆ beginRun()

virtual void beginRun ( void  )
inlinevirtualinherited

Called when entering a new run.

Called at the beginning of each run, the method gives you the chance to change run dependent constants like alignment parameters, etc.

This method can be implemented by subclasses.

Reimplemented in ARICHBackgroundModule, BeamabortModule, BgoModule, CaveModule, ClawModule, CLAWSModule, DosiModule, FANGSModule, He3tubeModule, MicrotpcModule, Ph1bpipeModule, Ph1sustrModule, PindiodeModule, PlumeModule, QcsmonitorModule, SrsensorModule, GetEventFromSocketModule, CalibrationCollectorModule, EventsOfDoomBusterModule, CosmicsAlignmentValidationModule, EnergyBiasCorrectionModule, ChargedPidMVAModule, ChargedPidMVAMulticlassModule, CurlTaggerModule, LowEnergyPi0IdentificationExpertModule, LowEnergyPi0VetoExpertModule, ParticleVertexFitterModule, PhotonEfficiencySystematicsModule, TagVertexModule, TreeFitterModule, arichBtestModule, ARICHDigitizerModule, ARICHDQMModule, ARICHRateCalModule, ARICHReconstructorModule, B2BIIMCParticlesMonitorModule, B2BIIConvertBeamParamsModule, B2BIIConvertMdstModule, B2BIIFixMdstModule, B2BIIMdstInputModule, BelleMCOutputModule, BeamBkgGeneratorModule, BeamBkgHitRateMonitorModule, BeamBkgMixerModule, BeamBkgTagSetterModule, BGOverlayInputModule, AnalysisPhase1StudyModule, NtuplePhase1_v6Module, ReprocessorModule, BeamabortStudyModule, BeamDigitizerModule, BgoDigitizerModule, BgoStudyModule, ClawDigitizerModule, ClawStudyModule, ClawsDigitizerModule, ClawsStudyModule, CsiDigitizer_v2Module, CsIDigitizerModule, CsiModule, CsiStudy_v2Module, CsIStudyModule, DosiDigitizerModule, DosiStudyModule, FANGSDigitizerModule, FANGSStudyModule, He3DigitizerModule, He3tubeStudyModule, MicrotpcStudyModule, TpcDigitizerModule, PinDigitizerModule, PindiodeStudyModule, PlumeDigitizerModule, QcsmonitorDigitizerModule, QcsmonitorStudyModule, CDCCosmicAnalysisModule, CDCCRTestModule, cdcDQM7Module, CDCDQMModule, CDCPackerModule, CDCRecoTrackFilterModule, CDCUnpackerModule, DAQPerfModule, RxSocketModule, TxSocketModule, DqmHistoManagerModule, MonitorDataModule, TrackAnaModule, Ds2SampleModule, ReceiveEventModule, HLTDQM2ZMQModule, ElapsedTimeModule, DeSerializerPXDModule, GenRawSendModule, SerializerModule, CertifyParallelModule, Ds2RawModule, Ds2RbufModule, EvReductionModule, FastRbuf2DsModule, Raw2DsModule, RawInputModule, Rbuf2DsModule, Rbuf2RbufModule, Ds2RawFileModule, PartialSeqRootReaderModule, SeqRootMergerModule, StorageDeserializerModule, StorageSerializerModule, IPDQMModule, PhysicsObjectsDQMModule, PhysicsObjectsMiraBelleBhabhaModule, PhysicsObjectsMiraBelleDst2Module, PhysicsObjectsMiraBelleDstModule, PhysicsObjectsMiraBelleHadronModule, PhysicsObjectsMiraBelleModule, ECLBackgroundModule, ECLChargedPIDModule, ECLChargedPIDDataAnalysisModule, ECLChargedPIDDataAnalysisValidationModule, ECLChargedPIDMVAModule, ECLClusterPSDModule, ECLCovarianceMatrixModule, ECLCRFinderModule, ECLDataAnalysisModule, ECLDigitCalibratorModule, ECLDigitizerModule, ECLDigitizerPureCsIModule, EclDisplayModule, ECLDQMModule, ECLDQMConnectedRegionsModule, ECLDQMEXTENDEDModule, ECLDQMOutOfTimeDigitsModule, ECLFinalizerModule, ECLHitDebugModule, ECLLocalMaximumFinderModule, ECLLocalRunCalibratorModule, ECLLOMModule, ECLPackerModule, ECLShowerCorrectorModule, ECLShowerShapeModule, ECLSplitterN1Module, ECLSplitterN2Module, ECLUnpackerModule, ECLWaveformFitModule, HistoModule, SubEventModule, SwitchDataStoreModule, EventInfoPrinterModule, EventLimiterModule, IoVDependentConditionModule, ProgressModule, RandomBarrierModule, GearboxModule, HistoManagerModule, StatisticsSummaryModule, SeqRootInputModule, SeqRootOutputModule, RxModule, TxModule, EvtGenDecayModule, EvtGenInputModule, OverrideGenerationFlagsModule, KKGenInputModule, CreateFieldMapModule, ExportGeometryModule, SoftwareTriggerModule, SoftwareTriggerHLTDQMModule, StatisticsTimingHLTDQMModule, BKLMAnaModule, BKLMDigitAnalyzerModule, BKLMSimHistogrammerModule, BKLMTrackingModule, EKLMDataCheckerModule, KLMClusterAnaModule, KLMClusterEfficiencyModule, KLMClustersReconstructorModule, KLMDigitizerModule, KLMDigitTimeShifterModule, KLMDQMModule, KLMDQM2Module, KLMPackerModule, KLMReconstructorModule, KLMScintillatorSimulatorModule, KLMUnpackerModule, MVAExpertModule, MVAMultipleExpertsModule, MVAPrototypeModule, AWESOMEBasicModule, PXDBackgroundModule, PXDRawDQMChipsModule, PXDClustersFromTracksModule, PXDPerformanceModule, PXDClusterizerModule, Convert2RawDetModule, CDCDedxDQMModule, CDCDedxValidationModule, EventT0DQMModule, EventT0ValidationModule, DataWriterModule, ECLExpertModule, KLMExpertModule, KlongValidationModule, KLMMuonIDDNNExpertModule, FullSimModule, MaterialScanModule, SVDBackgroundModule, SVDClusterCalibrationsMonitorModule, SVDHotStripFinderModule, SVDLatencyCalibrationModule, SVDLocalCalibrationsCheckModule, SVDLocalCalibrationsMonitorModule, SVDPositionErrorScaleFactorImporterModule, SVDTimeCalibrationsMonitorModule, SVDDQMHitTimeModule, svdDumpModule, SVDPackerModule, SVDB4CommissioningPlotsModule, SVDClusterEvaluationModule, SVDClusterEvaluationTrueInfoModule, SVDClusterFilterModule, SVDMaxStripTTreeModule, SVDOccupancyAnalysisModule, SVDPerformanceModule, SVDPerformanceTTreeModule, SVDShaperDigitsFromTracksModule, SVDClusterizerModule, SVDCoGTimeEstimatorModule, SVDDataFormatCheckModule, SVDMissingAPVsClusterCreatorModule, SVDRecoDigitCreatorModule, SVD3SamplesEmulatorModule, SVDDigitizerModule, SVDEventInfoSetterModule, SVDTriggerQualityGeneratorModule, SVDSpacePointCreatorModule, SVDTimeGroupingModule, SVDUnpackerModule, TOPBackgroundModule, TOPBunchFinderModule, TOPChannelMaskerModule, TOPChannelT0MCModule, TOPDigitizerModule, TOPTriggerDigitizerModule, TOPDoublePulseGeneratorModule, TOPDQMModule, TOPGainEfficiencyCalculatorModule, TOPLaserHitSelectorModule, TOPInterimFENtupleModule, TOPLaserCalibratorModule, TOPMCTrackMakerModule, TOPModuleT0CalibratorModule, TOPNtupleModule, TOPPackerModule, TOPRawDigitConverterModule, TOPTBCComparatorModule, TOPTimeBaseCalibratorModule, TOPTimeRecalibratorModule, TOPUnpackerModule, TOPWaveformFeatureExtractorModule, TOPXTalkChargeShareSetterModule, DQMHistoModuleBase, SVDEventT0EstimatorModule, ExtModule, FlipQualityModule, BeamSpotMonitorModule, KinkFinderModule, MCV0MatcherModule, MCTrackCandClassifierModule, MuidModule, PXDROIFinderModule, SVDROIFinderAnalysisModule, SVDROIFinderModule, SPTCmomentumSeedRetrieverModule, SPTCvirtualIPRemoverModule, TrackCreatorModule, TrackFinderMCTruthRecoTracksModule, EffPlotsModule, HitXPModule, TrackingPerformanceEvaluationModule, V0findingPerformanceEvaluationModule, TrackQETrainingDataCollectorModule, TrackQualityEstimatorMVAModule, SecMapTrainerBaseModule, SecMapTrainerVXDTFModule, TrackFinderVXDAnalizerModule, VXDSimpleClusterizerModule, QualityEstimatorVXDModule, VXDQETrainingDataCollectorModule, VXDQualityEstimatorMVAModule, SectorMapBootstrapModule, SegmentNetworkProducerModule, TrackFinderVXDBasicPathFinderModule, TrackFinderVXDCellOMatModule, VXDTFTrainingDataCollectorModule, FindletModule< AFindlet >, FindletModule< HitBasedT0Extractor >, FindletModule< CKFToSVDSeedFindlet >, FindletModule< CKFToSVDFindlet >, FindletModule< CosmicsTrackMergerFindlet >, FindletModule< DATCONFPGAFindlet >, FindletModule< MCVXDCDCTrackMergerFindlet >, FindletModule< vxdHoughTracking::SVDHoughTracking >, FindletModule< CKFToCDCFindlet >, FindletModule< CKFToCDCFromEclFindlet >, FindletModule< CKFToPXDFindlet >, FindletModule< AsicBackgroundLibraryCreator >, FindletModule< CDCTrackingEventLevelMdstInfoFillerFromHitsFindlet >, FindletModule< CDCTrackingEventLevelMdstInfoFillerFromSegmentsFindlet >, FindletModule< AxialSegmentPairCreator >, FindletModule< AxialStraightTrackFinder >, FindletModule< AxialTrackCreatorMCTruth >, FindletModule< AxialTrackCreatorSegmentHough >, FindletModule< AxialTrackFinderHough >, FindletModule< AxialTrackFinderLegendre >, FindletModule< ClusterBackgroundDetector >, FindletModule< ClusterPreparer >, FindletModule< ClusterRefiner< BridgingWireHitRelationFilter > >, FindletModule< FacetCreator >, FindletModule< HitReclaimer >, FindletModule< MonopoleAxialTrackFinderLegendre >, FindletModule< MonopoleStereoHitFinder >, FindletModule< MonopoleStereoHitFinderQuadratic >, FindletModule< SegmentCreatorFacetAutomaton >, FindletModule< SegmentCreatorMCTruth >, FindletModule< SegmentFinderFacetAutomaton >, FindletModule< SegmentFitter >, FindletModule< SegmentLinker >, FindletModule< SegmentOrienter >, FindletModule< SegmentPairCreator >, FindletModule< SegmentRejecter >, FindletModule< SegmentTrackCombiner >, FindletModule< SegmentTripleCreator >, FindletModule< StereoHitFinder >, FindletModule< SuperClusterCreator >, FindletModule< TrackCombiner >, FindletModule< TrackCreatorSegmentPairAutomaton >, FindletModule< TrackCreatorSegmentTripleAutomaton >, FindletModule< TrackCreatorSingleSegments >, FindletModule< TrackExporter >, FindletModule< TrackFinderAutomaton >, FindletModule< TrackFinderCosmics >, FindletModule< TrackFinder >, FindletModule< TrackFinderSegmentPairAutomaton >, FindletModule< TrackFinderSegmentTripleAutomaton >, FindletModule< TrackFlightTimeAdjuster >, FindletModule< TrackLinker >, FindletModule< TrackOrienter >, FindletModule< TrackQualityAsserter >, FindletModule< TrackQualityEstimator >, FindletModule< TrackRejecter >, FindletModule< WireHitBackgroundDetector >, FindletModule< WireHitCreator >, FindletModule< WireHitPreparer >, CDCTriggerNeuroDQMModule, CDCTriggerNeuroDQMOnlineModule, CDCTriggerNDFinderModule, CDCTriggerTSFModule, TRGCDCModule, TRGCDCETFUnpackerModule, TRGCDCT2DDQMModule, TRGCDCT3DConverterModule, TRGCDCT3DDQMModule, TRGCDCT3DUnpackerModule, TRGCDCTSFDQMModule, TRGCDCTSFUnpackerModule, TRGCDCTSStreamModule, CDCTriggerUnpackerModule, MCMatcherTRGECLModule, TRGECLFAMModule, TRGECLModule, TRGECLBGTCHitModule, TRGECLDQMModule, TRGECLEventTimingDQMModule, TRGECLQAMModule, TRGECLRawdataAnalysisModule, TRGECLTimingCalModule, TRGECLUnpackerModule, TRGGDLModule, TRGGDLDQMModule, TRGGDLDSTModule, TRGGDLSummaryModule, TRGGDLUnpackerModule, TRGGRLMatchModule, TRGGRLModule, TRGGRLProjectsModule, TRGGRLDQMModule, TRGGRLUnpackerModule, KLMTriggerModule, TRGTOPDQMModule, TRGTOPTRD2TTSConverterModule, TRGTOPUnpackerModule, TRGTOPUnpackerWaveformModule, TRGTOPWaveformPlotterModule, TRGRAWDATAModule, VXDMisalignmentModule, DQMHistAnalysisARICHModule, DQMHistAnalysisCDCDedxModule, DQMHistAnalysisCDCEpicsModule, DQMHistAnalysisCDCMonObjModule, DQMHistAnalysisDAQMonObjModule, DQMHistAnalysisECLModule, DQMHistAnalysisECLConnectedRegionsModule, DQMHistAnalysisECLShapersModule, DQMHistAnalysisECLSummaryModule, DQMHistAnalysisEpicsExampleModule, DQMHistAnalysisEventT0EfficiencyModule, DQMHistAnalysisEventT0TriggerJitterModule, DQMHistAnalysisExampleModule, DQMHistAnalysisExampleFlagsModule, DQMHistAnalysisHLTModule, DQMHistAnalysisInput2Module, DQMHistAnalysisInputPVSrvModule, DQMHistAnalysisInputRootFileModule, DQMHistAnalysisInputTestModule, DQMHistAnalysisKLMModule, DQMHistAnalysisKLM2Module, DQMHistAnalysisMiraBelleModule, DQMHistAnalysisOutputMonObjModule, DQMHistAnalysisOutputRelayMsgModule, DQMHistAnalysisPeakModule, DQMHistAnalysisPXDERModule, DQMHistAnalysisPXDFitsModule, DQMHistAnalysisSVDClustersOnTrackModule, DQMHistAnalysisSVDDoseModule, DQMHistAnalysisSVDEfficiencyModule, DQMHistAnalysisSVDGeneralModule, DQMHistAnalysisSVDOccupancyModule, DQMHistAnalysisSVDOnMiraBelleModule, DQMHistAnalysisSVDUnpackerModule, DQMHistAnalysisTOPModule, DQMHistAnalysisTrackingAbortModule, DQMHistAnalysisTrackingHLTModule, DQMHistAnalysisTRGECLModule, DQMHistAutoCanvasModule, DQMHistComparitorModule, DQMHistDeltaHistoModule, DQMHistReferenceModule, DQMHistSnapshotsModule, DAQMonitorModule, DelayDQMModule, V0ObjectsDQMModule, ECLDQMInjectionModule, PyModule, PXDBgTupleProducerModule, PXDMCBgTupleProducerModule, PXDDAQDQMModule, PXDDQMClustersModule, PXDDQMCorrModule, PXDDQMEfficiencyModule, PXDDQMEfficiencySelftrackModule, PXDDQMExpressRecoModule, PXDGatedDHCDQMModule, PXDGatedModeDQMModule, PXDInjectionDQMModule, PXDRawDQMCorrModule, PXDRawDQMModule, PXDROIDQMModule, PXDTrackClusterDQMModule, PXDDigitizerModule, PXDPackerModule, PXDUnpackerModule, TTDDQMModule, SVDDQMClustersOnTrackModule, SVDDQMDoseModule, SVDDQMExpressRecoModule, SVDDQMInjectionModule, SVDUnpackerDQMModule, PXDclusterFilterModule, PXDdigiFilterModule, PXDROIFinderAnalysisModule, TrackingAbortDQMModule, VXDDQMExpressRecoModule, vxdDigitMaskingModule, DQMHistAnalysisDeltaEpicsMonObjExampleModule, DQMHistAnalysisDeltaTestModule, DQMHistAnalysisEpicsOutputModule, DQMHistAnalysisPhysicsModule, DQMHistAnalysisPXDChargeModule, DQMHistAnalysisPXDCMModule, DQMHistAnalysisPXDDAQModule, DQMHistAnalysisPXDEffModule, DQMHistAnalysisPXDInjectionModule, DQMHistAnalysisPXDReductionModule, DQMHistAnalysisPXDTrackChargeModule, DQMHistAnalysisRooFitExampleModule, DQMHistAnalysisRunNrModule, DQMHistAnalysisTRGModule, DQMHistInjectionModule, and DQMHistOutputToEPICSModule.

Definition at line 147 of file Module.h.

147{};

◆ clone()

std::shared_ptr< PathElement > clone ( ) const
overridevirtualinherited

Create an independent copy of this module.

Note that parameters are shared, so changing them on a cloned module will also affect the original module.

Implements PathElement.

Definition at line 179 of file Module.cc.

180{
182 newModule->m_moduleParamList.setParameters(getParamList());
183 newModule->setName(getName());
184 newModule->m_package = m_package;
185 newModule->m_propertyFlags = m_propertyFlags;
186 newModule->m_logConfig = m_logConfig;
187 newModule->m_conditions = m_conditions;
188
189 return newModule;
190}
std::shared_ptr< Module > registerModule(const std::string &moduleName, std::string sharedLibPath="") noexcept(false)
Creates an instance of a module and registers it to the ModuleManager.
static ModuleManager & Instance()
Exception is thrown if the requested module could not be created by the ModuleManager.
const ModuleParamList & getParamList() const
Return module param list.
Definition: Module.h:363
const std::string & getName() const
Returns the name of the module.
Definition: Module.h:187
const std::string & getType() const
Returns the type of the module (i.e.
Definition: Module.cc:41
unsigned int m_propertyFlags
The properties of the module as bitwise or (with |) of EModulePropFlags.
Definition: Module.h:512
LogConfig m_logConfig
The log system configuration of the module.
Definition: Module.h:514
std::vector< ModuleCondition > m_conditions
Module condition, only non-null if set.
Definition: Module.h:521
std::string m_package
Package this module is found in (may be empty).
Definition: Module.h:510
std::shared_ptr< Module > ModulePtr
Defines a pointer to a module object as a boost shared pointer.
Definition: Module.h:43

◆ def_beginRun()

virtual void def_beginRun ( )
inlineprotectedvirtualinherited

Wrapper method for the virtual function beginRun() that has the implementation to be used in a call from Python.

Reimplemented in PyModule.

Definition at line 426 of file Module.h.

426{ beginRun(); }
virtual void beginRun()
Called when entering a new run.
Definition: Module.h:147

◆ def_endRun()

virtual void def_endRun ( )
inlineprotectedvirtualinherited

This method can receive that the current run ends as a call from the Python side.

For regular C++-Modules that forwards the call to the regular endRun() method.

Reimplemented in PyModule.

Definition at line 439 of file Module.h.

439{ endRun(); }
virtual void endRun()
This method is called if the current run ends.
Definition: Module.h:166

◆ def_event()

virtual void def_event ( )
inlineprotectedvirtualinherited

Wrapper method for the virtual function event() that has the implementation to be used in a call from Python.

Reimplemented in PyModule.

Definition at line 432 of file Module.h.

432{ event(); }
virtual void event()
This method is the core of the module.
Definition: Module.h:157

◆ def_initialize()

virtual void def_initialize ( )
inlineprotectedvirtualinherited

Wrappers to make the methods without "def_" prefix callable from Python.

Overridden in PyModule. Wrapper method for the virtual function initialize() that has the implementation to be used in a call from Python.

Reimplemented in PyModule.

Definition at line 420 of file Module.h.

420{ initialize(); }
virtual void initialize()
Initialize the Module.
Definition: Module.h:109

◆ def_terminate()

virtual void def_terminate ( )
inlineprotectedvirtualinherited

Wrapper method for the virtual function terminate() that has the implementation to be used in a call from Python.

Reimplemented in PyModule.

Definition at line 445 of file Module.h.

445{ terminate(); }
virtual void terminate()
This method is called at the end of the event processing.
Definition: Module.h:176

◆ endRun()

virtual void endRun ( void  )
inlinevirtualinherited

This method is called if the current run ends.

Use this method to store information, which should be aggregated over one run.

This method can be implemented by subclasses.

Reimplemented in BeamabortModule, BgoModule, CaveModule, ClawModule, CLAWSModule, DosiModule, FANGSModule, He3tubeModule, MicrotpcModule, Ph1bpipeModule, Ph1sustrModule, PindiodeModule, PlumeModule, QcsmonitorModule, SrsensorModule, GetEventFromSocketModule, CalibrationCollectorModule, AlignDQMModule, CosmicsAlignmentValidationModule, CurlTaggerModule, LowEnergyPi0IdentificationExpertModule, LowEnergyPi0VetoExpertModule, arichBtestModule, ARICHDQMModule, B2BIIMCParticlesMonitorModule, B2BIIConvertMdstModule, B2BIIMdstInputModule, BelleMCOutputModule, BeamBkgGeneratorModule, BeamBkgHitRateMonitorModule, BeamBkgMixerModule, BeamBkgTagSetterModule, BGOverlayInputModule, AnalysisPhase1StudyModule, NtuplePhase1_v6Module, ReprocessorModule, BeamabortStudyModule, BeamDigitizerModule, BgoDigitizerModule, BgoStudyModule, ClawDigitizerModule, ClawStudyModule, ClawsDigitizerModule, ClawsStudyModule, CsiDigitizer_v2Module, CsIDigitizerModule, CsiModule, CsiStudy_v2Module, CsIStudyModule, DosiDigitizerModule, DosiStudyModule, FANGSDigitizerModule, FANGSStudyModule, He3DigitizerModule, He3tubeStudyModule, MicrotpcStudyModule, TpcDigitizerModule, TPCStudyModule, PinDigitizerModule, PindiodeStudyModule, PlumeDigitizerModule, QcsmonitorDigitizerModule, QcsmonitorStudyModule, CDCCosmicAnalysisModule, CDCCRTestModule, cdcDQM7Module, CDCDQMModule, CDCPackerModule, CDCRecoTrackFilterModule, CDCUnpackerModule, DAQPerfModule, RxSocketModule, TxSocketModule, DqmHistoManagerModule, MonitorDataModule, TrackAnaModule, Ds2SampleModule, ReceiveEventModule, HLTDQM2ZMQModule, HLTDs2ZMQModule, ElapsedTimeModule, DeSerializerPXDModule, GenRawSendModule, Root2RawModule, SerializerModule, CertifyParallelModule, Ds2RawModule, Ds2RbufModule, EvReductionModule, FastRbuf2DsModule, Raw2DsModule, RawInputModule, Rbuf2DsModule, Rbuf2RbufModule, Ds2RawFileModule, PartialSeqRootReaderModule, SeqRootMergerModule, StorageDeserializerModule, StorageRootOutputModule, StorageSerializerModule, PhysicsObjectsDQMModule, PhysicsObjectsMiraBelleBhabhaModule, PhysicsObjectsMiraBelleDst2Module, PhysicsObjectsMiraBelleDstModule, PhysicsObjectsMiraBelleHadronModule, PhysicsObjectsMiraBelleModule, ECLBackgroundModule, ECLChargedPIDModule, ECLChargedPIDDataAnalysisModule, ECLChargedPIDDataAnalysisValidationModule, ECLClusterPSDModule, ECLCovarianceMatrixModule, ECLCRFinderModule, ECLDataAnalysisModule, ECLDigitCalibratorModule, ECLDigitizerModule, ECLDigitizerPureCsIModule, EclDisplayModule, ECLDQMModule, ECLDQMEXTENDEDModule, ECLDQMOutOfTimeDigitsModule, ECLFinalizerModule, ECLHitDebugModule, ECLLocalMaximumFinderModule, ECLLocalRunCalibratorModule, ECLLOMModule, ECLPackerModule, ECLShowerCorrectorModule, ECLShowerShapeModule, ECLSplitterN1Module, ECLSplitterN2Module, ECLUnpackerModule, ECLWaveformFitModule, HistoModule, SubEventModule, SwitchDataStoreModule, EventInfoPrinterModule, RandomBarrierModule, HistoManagerModule, StatisticsSummaryModule, SeqRootInputModule, SeqRootOutputModule, RxModule, TxModule, ZMQTxInputModule, ZMQTxWorkerModule, EvtGenDecayModule, OverrideGenerationFlagsModule, BKLMAnaModule, BKLMDigitAnalyzerModule, BKLMSimHistogrammerModule, BKLMTrackingModule, EKLMDataCheckerModule, KLMClusterEfficiencyModule, KLMClustersReconstructorModule, KLMDigitizerModule, KLMDQMModule, KLMDQM2Module, KLMPackerModule, KLMReconstructorModule, KLMScintillatorSimulatorModule, KLMUnpackerModule, AWESOMEBasicModule, PXDBackgroundModule, PXDClustersFromTracksModule, PXDPerformanceModule, Convert2RawDetModule, PrintDataModule, PrintEventRateModule, Root2BinaryModule, CDCDedxDQMModule, CDCDedxValidationModule, EventT0ValidationModule, DataWriterModule, KlongValidationModule, KLMMuonIDDNNExpertModule, FullSimModule, SVDBackgroundModule, SVDClusterCalibrationsMonitorModule, SVDHotStripFinderModule, SVDLatencyCalibrationModule, SVDLocalCalibrationsMonitorModule, SVDPositionErrorScaleFactorImporterModule, SVDTimeCalibrationsMonitorModule, svdDumpModule, SVDPackerModule, SVDB4CommissioningPlotsModule, SVDClusterEvaluationModule, SVDClusterEvaluationTrueInfoModule, SVDClusterFilterModule, SVDOccupancyAnalysisModule, SVDPerformanceModule, SVDShaperDigitsFromTracksModule, SVDClusterizerModule, SVDCoGTimeEstimatorModule, SVDDataFormatCheckModule, SVDRecoDigitCreatorModule, SVD3SamplesEmulatorModule, SVDTriggerQualityGeneratorModule, SVDUnpackerModule, TOPBackgroundModule, TOPChannelT0MCModule, TOPTriggerDigitizerModule, TOPDoublePulseGeneratorModule, TOPGainEfficiencyCalculatorModule, TOPLaserHitSelectorModule, TOPInterimFENtupleModule, TOPLaserCalibratorModule, TOPMCTrackMakerModule, TOPNtupleModule, TOPPackerModule, TOPRawDigitConverterModule, TOPTBCComparatorModule, TOPTimeBaseCalibratorModule, TOPUnpackerModule, TOPWaveformFeatureExtractorModule, TOPWaveformQualityPlotterModule, TOPXTalkChargeShareSetterModule, ExtModule, GenfitVisModule, MCV0MatcherModule, MCTrackCandClassifierModule, MuidModule, MCSlowPionPXDROICreatorModule, PXDROIFinderModule, SVDROIDQMModule, SVDROIFinderAnalysisModule, SVDROIFinderModule, RT2SPTCConverterModule, SPTCmomentumSeedRetrieverModule, SPTCvirtualIPRemoverModule, TrackFinderMCTruthRecoTracksModule, EffPlotsModule, HitXPModule, TrackingPerformanceEvaluationModule, V0findingPerformanceEvaluationModule, SecMapTrainerBaseModule, SecMapTrainerVXDTFModule, TrackFinderVXDAnalizerModule, VXDSimpleClusterizerModule, NoKickCutsEvalModule, SectorMapBootstrapModule, VXDTFTrainingDataCollectorModule, FindletModule< AFindlet >, FindletModule< HitBasedT0Extractor >, FindletModule< CKFToSVDSeedFindlet >, FindletModule< CKFToSVDFindlet >, FindletModule< CosmicsTrackMergerFindlet >, FindletModule< DATCONFPGAFindlet >, FindletModule< MCVXDCDCTrackMergerFindlet >, FindletModule< vxdHoughTracking::SVDHoughTracking >, FindletModule< CKFToCDCFindlet >, FindletModule< CKFToCDCFromEclFindlet >, FindletModule< CKFToPXDFindlet >, FindletModule< AsicBackgroundLibraryCreator >, FindletModule< CDCTrackingEventLevelMdstInfoFillerFromHitsFindlet >, FindletModule< CDCTrackingEventLevelMdstInfoFillerFromSegmentsFindlet >, FindletModule< AxialSegmentPairCreator >, FindletModule< AxialStraightTrackFinder >, FindletModule< AxialTrackCreatorMCTruth >, FindletModule< AxialTrackCreatorSegmentHough >, FindletModule< AxialTrackFinderHough >, FindletModule< AxialTrackFinderLegendre >, FindletModule< ClusterBackgroundDetector >, FindletModule< ClusterPreparer >, FindletModule< ClusterRefiner< BridgingWireHitRelationFilter > >, FindletModule< FacetCreator >, FindletModule< HitReclaimer >, FindletModule< MonopoleAxialTrackFinderLegendre >, FindletModule< MonopoleStereoHitFinder >, FindletModule< MonopoleStereoHitFinderQuadratic >, FindletModule< SegmentCreatorFacetAutomaton >, FindletModule< SegmentCreatorMCTruth >, FindletModule< SegmentFinderFacetAutomaton >, FindletModule< SegmentFitter >, FindletModule< SegmentLinker >, FindletModule< SegmentOrienter >, FindletModule< SegmentPairCreator >, FindletModule< SegmentRejecter >, FindletModule< SegmentTrackCombiner >, FindletModule< SegmentTripleCreator >, FindletModule< StereoHitFinder >, FindletModule< SuperClusterCreator >, FindletModule< TrackCombiner >, FindletModule< TrackCreatorSegmentPairAutomaton >, FindletModule< TrackCreatorSegmentTripleAutomaton >, FindletModule< TrackCreatorSingleSegments >, FindletModule< TrackExporter >, FindletModule< TrackFinderAutomaton >, FindletModule< TrackFinderCosmics >, FindletModule< TrackFinder >, FindletModule< TrackFinderSegmentPairAutomaton >, FindletModule< TrackFinderSegmentTripleAutomaton >, FindletModule< TrackFlightTimeAdjuster >, FindletModule< TrackLinker >, FindletModule< TrackOrienter >, FindletModule< TrackQualityAsserter >, FindletModule< TrackQualityEstimator >, FindletModule< TrackRejecter >, FindletModule< WireHitBackgroundDetector >, FindletModule< WireHitCreator >, FindletModule< WireHitPreparer >, CDCTriggerNeuroDQMModule, CDCTriggerNeuroDQMOnlineModule, CDCTriggerNDFinderModule, TRGCDCModule, TRGCDCETFUnpackerModule, TRGCDCT2DDQMModule, TRGCDCT3DConverterModule, TRGCDCT3DDQMModule, TRGCDCT3DUnpackerModule, TRGCDCTSFDQMModule, TRGCDCTSFUnpackerModule, TRGCDCTSStreamModule, MCMatcherTRGECLModule, TRGECLFAMModule, TRGECLModule, TRGECLBGTCHitModule, TRGECLDQMModule, TRGECLQAMModule, TRGECLRawdataAnalysisModule, TRGECLTimingCalModule, TRGECLUnpackerModule, TRGGDLModule, TRGGDLDQMModule, TRGGDLDSTModule, TRGGDLSummaryModule, TRGGDLUnpackerModule, TRGGRLMatchModule, TRGGRLModule, TRGGRLProjectsModule, TRGGRLDQMModule, TRGGRLUnpackerModule, KLMTriggerModule, TRGTOPDQMModule, TRGTOPTRD2TTSConverterModule, TRGTOPUnpackerModule, TRGTOPUnpackerWaveformModule, TRGTOPWaveformPlotterModule, TRGRAWDATAModule, DQMHistAnalysisARICHModule, DQMHistAnalysisARICHMonObjModule, DQMHistAnalysisCDCDedxModule, DQMHistAnalysisCDCEpicsModule, DQMHistAnalysisCDCMonObjModule, DQMHistAnalysisDAQMonObjModule, DQMHistAnalysisECLModule, DQMHistAnalysisECLConnectedRegionsModule, DQMHistAnalysisECLOutOfTimeDigitsModule, DQMHistAnalysisECLShapersModule, DQMHistAnalysisECLSummaryModule, DQMHistAnalysisEpicsExampleModule, DQMHistAnalysisExampleModule, DQMHistAnalysisExampleFlagsModule, DQMHistAnalysisHLTMonObjModule, DQMHistAnalysisInput2Module, DQMHistAnalysisInputPVSrvModule, DQMHistAnalysisInputTestModule, DQMHistAnalysisKLMModule, DQMHistAnalysisKLM2Module, DQMHistAnalysisMiraBelleModule, DQMHistAnalysisMonObjModule, DQMHistAnalysisOutputFileModule, DQMHistAnalysisOutputMonObjModule, DQMHistAnalysisOutputRelayMsgModule, DQMHistAnalysisPXDFitsModule, DQMHistAnalysisSVDClustersOnTrackModule, DQMHistAnalysisSVDDoseModule, DQMHistAnalysisSVDEfficiencyModule, DQMHistAnalysisSVDGeneralModule, DQMHistAnalysisSVDOccupancyModule, DQMHistAnalysisSVDOnMiraBelleModule, DQMHistAnalysisSVDUnpackerModule, DQMHistAnalysisTOPModule, DQMHistAnalysisTRGECLModule, DQMHistAnalysisTRGGDLModule, DQMHistComparitorModule, DQMHistDeltaHistoModule, DQMHistReferenceModule, DQMHistSnapshotsModule, PyModule, SVDUnpackerDQMModule, TrackSetEvaluatorHopfieldNNDEVModule, vxdDigitMaskingModule, DQMHistAnalysisDeltaEpicsMonObjExampleModule, DQMHistAnalysisDeltaTestModule, DQMHistAnalysisEpicsOutputModule, DQMHistAnalysisPhysicsModule, DQMHistAnalysisPXDChargeModule, DQMHistAnalysisPXDTrackChargeModule, DQMHistAnalysisRooFitExampleModule, DQMHistAnalysisTRGModule, and DQMHistOutputToEPICSModule.

Definition at line 166 of file Module.h.

166{};

◆ evalCondition()

bool evalCondition ( ) const
inherited

If at least one condition was set, it is evaluated and true returned if at least one condition returns true.

If no condition or result value was defined, the method returns false. Otherwise, the condition is evaluated and true returned, if at least one condition returns true. To speed up the evaluation, the condition strings were already parsed in the method if_value().

Returns
True if at least one condition and return value exists and at least one condition expression was evaluated to true.

Definition at line 96 of file Module.cc.

97{
98 if (m_conditions.empty()) return false;
99
100 //okay, a condition was set for this Module...
101 if (!m_hasReturnValue) {
102 B2FATAL("A condition was set for '" << getName() << "', but the module did not set a return value!");
103 }
104
105 for (const auto& condition : m_conditions) {
106 if (condition.evaluate(m_returnValue)) {
107 return true;
108 }
109 }
110 return false;
111}
int m_returnValue
The return value.
Definition: Module.h:519
bool m_hasReturnValue
True, if the return value is set.
Definition: Module.h:518

◆ event()

void event ( void  )
overridevirtual

Method is called for each event.

Reimplemented from Module.

Definition at line 88 of file TauDecayModeModule.cc.

89{
90
92 if (tauPair) {
93
95
96 if (m_printmode == "missing") {
97 if (m_mmode == -1) {
98 B2INFO("TauDecayMode:: EventNumber = " << m_event_metadata->getEvent()
99 << " Decay: tau- -> " << m_tauminusdecaymode << " Mode = " << m_mmode);
100 }
101 if (m_pmode == -1) {
102 B2INFO("TauDecayMode:: EventNumber = " << m_event_metadata->getEvent()
103 << " Decay: tau+ -> " << m_tauplusdecaymode << " Mode = " << m_pmode);
104 }
105 }
106
107 if (m_printmode == "all") {
108 B2INFO("TauDecayMode:: EventNumber = " << m_event_metadata->getEvent()
109 << " Decay: tau- -> " << m_tauminusdecaymode << " Mode = " << m_mmode);
110 B2INFO("TauDecayMode:: EventNumber = " << m_event_metadata->getEvent()
111 << " Decay: tau+ -> " << m_tauplusdecaymode << " Mode = " << m_pmode);
112 }
113
114 //
115 if (m_mmode == -1) {
116 m_taum_no = m_taum_no - 1;
118 }
119 if (m_pmode == -1) {
120 m_taup_no = m_taup_no - 1;
122 }
123
126
129
130 } else {
131 m_pmode = -1;
132 m_mmode = -1;
133 m_pprong = -1;
134 m_mprong = -1;
135 m_megstar = -1;
136 m_pegstar = -1;
137 }
138
139 if (!m_tauDecay) m_tauDecay.create();
140 m_tauDecay->addTauMinusIdMode(m_mmode);
141 m_tauDecay->addTauPlusIdMode(m_pmode);
142
143 m_tauDecay->addTauPlusMcProng(m_pprong);
144 m_tauDecay->addTauMinusMcProng(m_mprong);
145
146 m_tauDecay->addTauMinusEgstar(m_megstar);
147 m_tauDecay->addTauPlusEgstar(m_pegstar);
148}
StoreObjPtr< EventMetaData > m_event_metadata
event number
void IdentifyTauPair()
Identifies if the event is a generated tau pair.
double getEgstar(const std::vector< int > &vec_radgam, const MCParticle &mc)
Energy of the radiative photon in tau rest frame.
void AnalyzeTauPairEvent()
Analyze a generated tau pair event.
int getProngOfDecay(const MCParticle &mc)
Identifies the number of charged final state particles in the decay.
StoreObjPtr< TauPairDecay > m_tauDecay
pointer to tau pair decay objects

◆ exposePythonAPI()

void exposePythonAPI ( )
staticinherited

Exposes methods of the Module class to Python.

Definition at line 325 of file Module.cc.

326{
327 // to avoid confusion between std::arg and boost::python::arg we want a shorthand namespace as well
328 namespace bp = boost::python;
329
330 docstring_options options(true, true, false); //userdef, py sigs, c++ sigs
331
332 void (Module::*setReturnValueInt)(int) = &Module::setReturnValue;
333
334 enum_<Module::EAfterConditionPath>("AfterConditionPath",
335 R"(Determines execution behaviour after a conditional path has been executed:
336
337.. attribute:: END
338
339 End processing of this path after the conditional path. (this is the default for if_value() etc.)
340
341.. attribute:: CONTINUE
342
343 After the conditional path, resume execution after this module.)")
344 .value("END", Module::EAfterConditionPath::c_End)
345 .value("CONTINUE", Module::EAfterConditionPath::c_Continue)
346 ;
347
348 /* Do not change the names of >, <, ... we use them to serialize conditional pathes */
349 enum_<Belle2::ModuleCondition::EConditionOperators>("ConditionOperator")
356 ;
357
358 enum_<Module::EModulePropFlags>("ModulePropFlags",
359 R"(Flags to indicate certain low-level features of modules, see :func:`Module.set_property_flags()`, :func:`Module.has_properties()`. Most useful flags are:
360
361.. attribute:: PARALLELPROCESSINGCERTIFIED
362
363 This module can be run in parallel processing mode safely (All I/O must be done through the data store, in particular, the module must not write any files.)
364
365.. attribute:: HISTOGRAMMANAGER
366
367 This module is used to manage histograms accumulated by other modules
368
369.. attribute:: TERMINATEINALLPROCESSES
370
371 When using parallel processing, call this module's terminate() function in all processes. This will also ensure that there is exactly one process (single-core if no parallel modules found) or at least one input, one main and one output process.
372)")
373 .value("INPUT", Module::EModulePropFlags::c_Input)
374 .value("OUTPUT", Module::EModulePropFlags::c_Output)
375 .value("PARALLELPROCESSINGCERTIFIED", Module::EModulePropFlags::c_ParallelProcessingCertified)
376 .value("HISTOGRAMMANAGER", Module::EModulePropFlags::c_HistogramManager)
377 .value("INTERNALSERIALIZER", Module::EModulePropFlags::c_InternalSerializer)
378 .value("TERMINATEINALLPROCESSES", Module::EModulePropFlags::c_TerminateInAllProcesses)
379 ;
380
381 //Python class definition
382 class_<Module, PyModule> module("Module", R"(
383Base class for Modules.
384
385A module is the smallest building block of the framework.
386A typical event processing chain consists of a Path containing
387modules. By inheriting from this base class, various types of
388modules can be created. To use a module, please refer to
389:func:`Path.add_module()`. A list of modules is available by running
390``basf2 -m`` or ``basf2 -m package``, detailed information on parameters is
391given by e.g. ``basf2 -m RootInput``.
392
393The 'Module Development' section in the manual provides detailed information
394on how to create modules, setting parameters, or using return values/conditions:
395https://confluence.desy.de/display/BI/Software+Basf2manual#Module_Development
396
397)");
398 module
399 .def("__str__", &Module::getPathString)
400 .def("name", &Module::getName, return_value_policy<copy_const_reference>(),
401 "Returns the name of the module. Can be changed via :func:`set_name() <Module.set_name()>`, use :func:`type() <Module.type()>` for identifying a particular module class.")
402 .def("type", &Module::getType, return_value_policy<copy_const_reference>(),
403 "Returns the type of the module (i.e. class name minus 'Module')")
404 .def("set_name", &Module::setName, args("name"), R"(
405Set custom name, e.g. to distinguish multiple modules of the same type.
406
407>>> path.add_module('EventInfoSetter')
408>>> ro = path.add_module('RootOutput', branchNames=['EventMetaData'])
409>>> ro.set_name('RootOutput_metadata_only')
410>>> print(path)
411[EventInfoSetter -> RootOutput_metadata_only]
412
413)")
414 .def("description", &Module::getDescription, return_value_policy<copy_const_reference>(),
415 "Returns the description of this module.")
416 .def("package", &Module::getPackage, return_value_policy<copy_const_reference>(),
417 "Returns the package this module belongs to.")
418 .def("available_params", &_getParamInfoListPython,
419 "Return list of all module parameters as `ModuleParamInfo` instances")
420 .def("has_properties", &Module::hasProperties, (bp::arg("properties")),
421 R"DOCSTRING(Allows to check if the module has the given properties out of `ModulePropFlags` set.
422
423>>> if module.has_properties(ModulePropFlags.PARALLELPROCESSINGCERTIFIED):
424>>> ...
425
426Parameters:
427 properties (int): bitmask of `ModulePropFlags` to check for.
428)DOCSTRING")
429 .def("set_property_flags", &Module::setPropertyFlags, args("property_mask"),
430 "Set module properties in the form of an OR combination of `ModulePropFlags`.");
431 {
432 // python signature is too crowded, make ourselves
433 docstring_options subOptions(true, false, false); //userdef, py sigs, c++ sigs
434 module
435 .def("if_value", &Module::if_value,
436 (bp::arg("expression"), bp::arg("condition_path"), bp::arg("after_condition_path")= Module::EAfterConditionPath::c_End),
437 R"DOCSTRING(if_value(expression, condition_path, after_condition_path=AfterConditionPath.END)
438
439Sets a conditional sub path which will be executed after this
440module if the return value set in the module passes the given ``expression``.
441
442Modules can define a return value (int or bool) using ``setReturnValue()``,
443which can be used in the steering file to split the Path based on this value, for example
444
445>>> module_with_condition.if_value("<1", another_path)
446
447In case the return value of the ``module_with_condition`` for a given event is
448less than 1, the execution will be diverted into ``another_path`` for this event.
449
450You could for example set a special return value if an error occurs, and divert
451the execution into a path containing :b2:mod:`RootOutput` if it is found;
452saving only the data producing/produced by the error.
453
454After a conditional path has executed, basf2 will by default stop processing
455the path for this event. This behaviour can be changed by setting the
456``after_condition_path`` argument.
457
458Parameters:
459 expression (str): Expression to determine if the conditional path should be executed.
460 This should be one of the comparison operators ``<``, ``>``, ``<=``,
461 ``>=``, ``==``, or ``!=`` followed by a numerical value for the return value
462 condition_path (Path): path to execute in case the expression is fulfilled
463 after_condition_path (AfterConditionPath): What to do once the ``condition_path`` has been executed.
464)DOCSTRING")
465 .def("if_false", &Module::if_false,
466 (bp::arg("condition_path"), bp::arg("after_condition_path")= Module::EAfterConditionPath::c_End),
467 R"DOC(if_false(condition_path, after_condition_path=AfterConditionPath.END)
468
469Sets a conditional sub path which will be executed after this module if
470the return value of the module evaluates to False. This is equivalent to
471calling `if_value` with ``expression=\"<1\"``)DOC")
472 .def("if_true", &Module::if_true,
473 (bp::arg("condition_path"), bp::arg("after_condition_path")= Module::EAfterConditionPath::c_End),
474 R"DOC(if_true(condition_path, after_condition_path=AfterConditionPath.END)
475
476Sets a conditional sub path which will be executed after this module if
477the return value of the module evaluates to True. It is equivalent to
478calling `if_value` with ``expression=\">=1\"``)DOC");
479 }
480 module
481 .def("has_condition", &Module::hasCondition,
482 "Return true if a conditional path has been set for this module "
483 "using `if_value`, `if_true` or `if_false`")
484 .def("get_all_condition_paths", &_getAllConditionPathsPython,
485 "Return a list of all conditional paths set for this module using "
486 "`if_value`, `if_true` or `if_false`")
487 .def("get_all_conditions", &_getAllConditionsPython,
488 "Return a list of all conditional path expressions set for this module using "
489 "`if_value`, `if_true` or `if_false`")
490 .add_property("logging", make_function(&Module::getLogConfig, return_value_policy<reference_existing_object>()),
@ c_GE
Greater or equal than: ">=".
@ c_SE
Smaller or equal than: "<=".
@ c_GT
Greater than: ">"
@ c_NE
Not equal: "!=".
@ c_EQ
Equal: "=" or "=="
@ c_ST
Smaller than: "<"
Base class for Modules.
Definition: Module.h:72
LogConfig & getLogConfig()
Returns the log system configuration.
Definition: Module.h:225
void if_value(const std::string &expression, const std::shared_ptr< Path > &path, EAfterConditionPath afterConditionPath=EAfterConditionPath::c_End)
Add a condition to the module.
Definition: Module.cc:79
void setPropertyFlags(unsigned int propertyFlags)
Sets the flags for the module properties.
Definition: Module.cc:208
void if_true(const std::shared_ptr< Path > &path, EAfterConditionPath afterConditionPath=EAfterConditionPath::c_End)
A simplified version to set the condition of the module.
Definition: Module.cc:90
void setReturnValue(int value)
Sets the return value for this module as integer.
Definition: Module.cc:220
void setLogConfig(const LogConfig &logConfig)
Set the log system configuration.
Definition: Module.h:230
const std::string & getDescription() const
Returns the description of the module.
Definition: Module.h:202
void if_false(const std::shared_ptr< Path > &path, EAfterConditionPath afterConditionPath=EAfterConditionPath::c_End)
A simplified version to add a condition to the module.
Definition: Module.cc:85
bool hasCondition() const
Returns true if at least one condition was set for the module.
Definition: Module.h:311
const std::string & getPackage() const
Returns the package this module is in.
Definition: Module.h:197
void setName(const std::string &name)
Set the name of the module.
Definition: Module.h:214
bool hasProperties(unsigned int propertyFlags) const
Returns true if all specified property flags are available in this module.
Definition: Module.cc:160
std::string getPathString() const override
return the module name.
Definition: Module.cc:192

◆ getAfterConditionPath()

Module::EAfterConditionPath getAfterConditionPath ( ) const
inherited

What to do after the conditional path is finished.

(defaults to c_End if no condition is set)

Definition at line 133 of file Module.cc.

134{
135 if (m_conditions.empty()) return EAfterConditionPath::c_End;
136
137 //okay, a condition was set for this Module...
138 if (!m_hasReturnValue) {
139 B2FATAL("A condition was set for '" << getName() << "', but the module did not set a return value!");
140 }
141
142 for (const auto& condition : m_conditions) {
143 if (condition.evaluate(m_returnValue)) {
144 return condition.getAfterConditionPath();
145 }
146 }
147
148 return EAfterConditionPath::c_End;
149}

◆ getAllConditionPaths()

std::vector< std::shared_ptr< Path > > getAllConditionPaths ( ) const
inherited

Return all condition paths currently set (no matter if the condition is true or not).

Definition at line 150 of file Module.cc.

151{
152 std::vector<std::shared_ptr<Path>> allConditionPaths;
153 for (const auto& condition : m_conditions) {
154 allConditionPaths.push_back(condition.getPath());
155 }
156
157 return allConditionPaths;
158}

◆ getAllConditions()

const std::vector< ModuleCondition > & getAllConditions ( ) const
inlineinherited

Return all set conditions for this module.

Definition at line 324 of file Module.h.

325 {
326 return m_conditions;
327 }

◆ getCondition()

const ModuleCondition * getCondition ( ) const
inlineinherited

Return a pointer to the first condition (or nullptr, if none was set)

Definition at line 314 of file Module.h.

315 {
316 if (m_conditions.empty()) {
317 return nullptr;
318 } else {
319 return &m_conditions.front();
320 }
321 }

◆ getConditionPath()

std::shared_ptr< Path > getConditionPath ( ) const
inherited

Returns the path of the last true condition (if there is at least one, else reaturn a null pointer).


Definition at line 113 of file Module.cc.

114{
115 PathPtr p;
116 if (m_conditions.empty()) return p;
117
118 //okay, a condition was set for this Module...
119 if (!m_hasReturnValue) {
120 B2FATAL("A condition was set for '" << getName() << "', but the module did not set a return value!");
121 }
122
123 for (const auto& condition : m_conditions) {
124 if (condition.evaluate(m_returnValue)) {
125 return condition.getPath();
126 }
127 }
128
129 // if none of the conditions were true, return a null pointer.
130 return p;
131}
std::shared_ptr< Path > PathPtr
Defines a pointer to a path object as a boost shared pointer.
Definition: Path.h:35

◆ getDescription()

const std::string & getDescription ( ) const
inlineinherited

Returns the description of the module.

Definition at line 202 of file Module.h.

202{return m_description;}
std::string m_description
The description of the module.
Definition: Module.h:511

◆ getEgstar()

double getEgstar ( const std::vector< int > &  vec_radgam,
const MCParticle mc 
)
private

Energy of the radiative photon in tau rest frame.

Definition at line 866 of file TauDecayModeModule.cc.

867{
868 double egstar = -1.;
869 ROOT::Math::PxPyPzEVector p4_tau = p.get4Vector();
870 B2DEBUG(19, "p4_tau: " << p4_tau << " " << p4_tau.P());
871 ROOT::Math::Boost boost_to_mother_rest_frame(p4_tau.BoostToCM());
872 for (auto i : vec_radgam) {
873 ROOT::Math::PxPyPzEVector p4_gamma = MCParticles[i]->get4Vector();
874 B2DEBUG(19, "p4_gamma: " << p4_gamma << " " << p4_gamma.P());
875 ROOT::Math::PxPyPzEVector p4_gamma_rest = boost_to_mother_rest_frame * p4_gamma;
876 B2DEBUG(19, "p4_gamma_rest: " << p4_gamma_rest << " " << p4_gamma_rest.P());
877 double energy_rest = p4_gamma_rest.E();
878 if (energy_rest > egstar) egstar = energy_rest;
879 }
880 B2DEBUG(19, "egstar: " << egstar);
881 return egstar;
882}

◆ getFileNames()

virtual std::vector< std::string > getFileNames ( bool  outputFiles)
inlinevirtualinherited

Return a list of output filenames for this modules.

This will be called when basf2 is run with "--dry-run" if the module has set either the c_Input or c_Output properties.

If the parameter outputFiles is false (for modules with c_Input) the list of input filenames should be returned (if any). If outputFiles is true (for modules with c_Output) the list of output files should be returned (if any).

If a module has sat both properties this member is called twice, once for each property.

The module should return the actual list of requested input or produced output filenames (including handling of input/output overrides) so that the grid system can handle input/output files correctly.

This function should return the same value when called multiple times. This is especially important when taking the input/output overrides from Environment as they get consumed when obtained so the finalized list of output files should be stored for subsequent calls.

Reimplemented in RootInputModule, StorageRootOutputModule, and RootOutputModule.

Definition at line 134 of file Module.h.

135 {
136 return std::vector<std::string>();
137 }

◆ getLogConfig()

LogConfig & getLogConfig ( )
inlineinherited

Returns the log system configuration.

Definition at line 225 of file Module.h.

225{return m_logConfig;}

◆ getModules()

std::list< ModulePtr > getModules ( ) const
inlineoverrideprivatevirtualinherited

no submodules, return empty list

Implements PathElement.

Definition at line 506 of file Module.h.

506{ return std::list<ModulePtr>(); }

◆ getName()

const std::string & getName ( ) const
inlineinherited

Returns the name of the module.

This can be changed via e.g. set_name() in the steering file to give more useful names if there is more than one module of the same type.

For identifying the type of a module, using getType() (or type() in Python) is recommended.

Definition at line 187 of file Module.h.

187{return m_name;}
std::string m_name
The name of the module, saved as a string (user-modifiable)
Definition: Module.h:508

◆ getPackage()

const std::string & getPackage ( ) const
inlineinherited

Returns the package this module is in.

Definition at line 197 of file Module.h.

197{return m_package;}

◆ getParamInfoListPython()

std::shared_ptr< boost::python::list > getParamInfoListPython ( ) const
inherited

Returns a python list of all parameters.

Each item in the list consists of the name of the parameter, a string describing its type, a python list of all default values and the description of the parameter.

Returns
A python list containing the parameters of this parameter list.

Definition at line 279 of file Module.cc.

280{
282}
std::shared_ptr< boost::python::list > getParamInfoListPython() const
Returns a python list of all parameters.
ModuleParamList m_moduleParamList
List storing and managing all parameter of the module.
Definition: Module.h:516

◆ getParamList()

const ModuleParamList & getParamList ( ) const
inlineinherited

Return module param list.

Definition at line 363 of file Module.h.

363{ return m_moduleParamList; }

◆ getPathString()

std::string getPathString ( ) const
overrideprivatevirtualinherited

return the module name.

Implements PathElement.

Definition at line 192 of file Module.cc.

193{
194
195 std::string output = getName();
196
197 for (const auto& condition : m_conditions) {
198 output += condition.getString();
199 }
200
201 return output;
202}

◆ getProngOfDecay()

int getProngOfDecay ( const MCParticle mc)
private

Identifies the number of charged final state particles in the decay.

Definition at line 848 of file TauDecayModeModule.cc.

849{
850 int ret = 0;
851 const vector<MCParticle*> daughters = p.getDaughters();
852 if (daughters.empty()) return ret;
853 for (MCParticle* d : daughters) {
854 if (!d->hasStatus(MCParticle::c_PrimaryParticle)) continue;
855 // TODO: Improve how to identify a final state particle.
856 bool isChargedFinalState = find(begin(finalStatePDGs),
857 end(finalStatePDGs),
858 abs(d->getPDG())) != end(finalStatePDGs);
859 if (isChargedFinalState) ret++;
860 else ret += getProngOfDecay(*d);
861 }
862 return ret;
863}

◆ getRecursiveMotherCharge()

int getRecursiveMotherCharge ( const MCParticle mc)
private

Identifies particles coming from tau decays.

Definition at line 793 of file TauDecayModeModule.cc.

794{
795 const MCParticle* mother = p->getMother();
796 if (mother == nullptr) {
797 return 0;
798 } else if (abs(p->getPDG()) == Const::electron.getPDGCode() && mother->getPDG() == Const::pi0.getPDGCode()) { // pi0 -> e-e+ gamma
799 return 0;
800 } else if (abs(p->getPDG()) == Const::electron.getPDGCode() && mother->getPDG() == 221) { // eta -> e-e+ gamma
801 return 0;
802 } else if (abs(p->getPDG()) == Const::electron.getPDGCode() && mother->getPDG() == 113) { // rho0 -> e-e+
803 return 0;
804 } else if (abs(p->getPDG()) == Const::electron.getPDGCode() && mother->getPDG() == 223) { // omega -> e- e+
805 return 0;
806 } else if (abs(p->getPDG()) == Const::electron.getPDGCode() && mother->getPDG() == 333) { // phi -> e- e+
807 return 0;
808 } else if (abs(p->getPDG()) == Const::muon.getPDGCode() && mother->getPDG() == 221) { // eta -> mu-mu+ gamma
809 return 0;
810 } else if (abs(p->getPDG()) == Const::muon.getPDGCode() && mother->getPDG() == 113) { // rho0 -> mu-mu+
811 return 0;
812 } else if (abs(p->getPDG()) == Const::muon.getPDGCode() && mother->getPDG() == 333) { // phi -> mu-mu+
813 return 0;
814 } else if (mother->getPDG() == 15) {
815 return -1;
816 } else if (mother->getPDG() == -15) {
817 return 1;
818 } else {
819 return getRecursiveMotherCharge(mother);
820 }
821}

◆ getReturnValue()

int getReturnValue ( ) const
inlineinherited

Return the return value set by this module.

This value is only meaningful if hasReturnValue() is true

Definition at line 381 of file Module.h.

381{ return m_returnValue; }

◆ getType()

const std::string & getType ( ) const
inherited

Returns the type of the module (i.e.

class name minus 'Module')

Definition at line 41 of file Module.cc.

42{
43 if (m_type.empty())
44 B2FATAL("Module type not set for " << getName());
45 return m_type;
46}
std::string m_type
The type of the module, saved as a string.
Definition: Module.h:509

◆ hasCondition()

bool hasCondition ( ) const
inlineinherited

Returns true if at least one condition was set for the module.

Definition at line 311 of file Module.h.

311{ return not m_conditions.empty(); };

◆ hasProperties()

bool hasProperties ( unsigned int  propertyFlags) const
inherited

Returns true if all specified property flags are available in this module.

Parameters
propertyFlagsOred EModulePropFlags which should be compared with the module flags.

Definition at line 160 of file Module.cc.

161{
162 return (propertyFlags & m_propertyFlags) == propertyFlags;
163}

◆ hasReturnValue()

bool hasReturnValue ( ) const
inlineinherited

Return true if this module has a valid return value set.

Definition at line 378 of file Module.h.

378{ return m_hasReturnValue; }

◆ hasUnsetForcedParams()

bool hasUnsetForcedParams ( ) const
inherited

Returns true and prints error message if the module has unset parameters which the user has to set in the steering file.

Definition at line 166 of file Module.cc.

167{
169 std::string allMissing = "";
170 for (const auto& s : missing)
171 allMissing += s + " ";
172 if (!missing.empty())
173 B2ERROR("The following required parameters of Module '" << getName() << "' were not specified: " << allMissing <<
174 "\nPlease add them to your steering file.");
175 return !missing.empty();
176}
std::vector< std::string > getUnsetForcedParams() const
Returns list of unset parameters (if they are required to have a value.

◆ IdentifyTauPair()

void IdentifyTauPair ( )
private

Identifies if the event is a generated tau pair.

Definition at line 824 of file TauDecayModeModule.cc.

825{
826 numOfTauPlus = 0;
827 numOfTauMinus = 0;
828 idOfTauPlus = 0;
829 idOfTauMinus = 0;
830 for (int i = 0; i < MCParticles.getEntries(); i++) {
831 MCParticle& p = *MCParticles[i];
832
833 if (p.getStatus() == 1 && p.getPDG() == 15) {
835 idOfTauMinus = p.getIndex();
836 }
837 if (p.getStatus() == 1 && p.getPDG() == -15) {
838 numOfTauPlus++;
839 idOfTauPlus = p.getIndex();
840 }
841 }
842 if (numOfTauPlus == 1 && numOfTauMinus == 1) {
843 tauPair = true;
844 } else tauPair = false;
845}

◆ if_false()

void if_false ( const std::shared_ptr< Path > &  path,
EAfterConditionPath  afterConditionPath = EAfterConditionPath::c_End 
)
inherited

A simplified version to add a condition to the module.

Please note that successive calls of this function will add more than one condition to the module. If more than one condition results in true, only the last of them will be used.

Please be careful: Avoid creating cyclic paths, e.g. by linking a condition to a path which is processed before the path where this module is located in.

It is equivalent to the if_value() method, using the expression "<1". This method is meant to be used together with the setReturnValue(bool value) method.

Parameters
pathShared pointer to the Path which will be executed if the return value is false.
afterConditionPathWhat to do after executing 'path'.

Definition at line 85 of file Module.cc.

86{
87 if_value("<1", path, afterConditionPath);
88}

◆ if_true()

void if_true ( const std::shared_ptr< Path > &  path,
EAfterConditionPath  afterConditionPath = EAfterConditionPath::c_End 
)
inherited

A simplified version to set the condition of the module.

Please note that successive calls of this function will add more than one condition to the module. If more than one condition results in true, only the last of them will be used.

Please be careful: Avoid creating cyclic paths, e.g. by linking a condition to a path which is processed before the path where this module is located in.

It is equivalent to the if_value() method, using the expression ">=1". This method is meant to be used together with the setReturnValue(bool value) method.

Parameters
pathShared pointer to the Path which will be executed if the return value is true.
afterConditionPathWhat to do after executing 'path'.

Definition at line 90 of file Module.cc.

91{
92 if_value(">=1", path, afterConditionPath);
93}

◆ if_value()

void if_value ( const std::string &  expression,
const std::shared_ptr< Path > &  path,
EAfterConditionPath  afterConditionPath = EAfterConditionPath::c_End 
)
inherited

Add a condition to the module.

Please note that successive calls of this function will add more than one condition to the module. If more than one condition results in true, only the last of them will be used.

See https://confluence.desy.de/display/BI/Software+ModCondTut or ModuleCondition for a description of the syntax.

Please be careful: Avoid creating cyclic paths, e.g. by linking a condition to a path which is processed before the path where this module is located in.

Parameters
expressionThe expression of the condition.
pathShared pointer to the Path which will be executed if the condition is evaluated to true.
afterConditionPathWhat to do after executing 'path'.

Definition at line 79 of file Module.cc.

80{
81 m_conditions.emplace_back(expression, path, afterConditionPath);
82}

◆ initialize()

void initialize ( void  )
overridevirtual

Initializes the module.

Reimplemented from Module.

Definition at line 79 of file TauDecayModeModule.cc.

80{
81 mode_decay_minus = make_map(m_file_minus, -1);
82 mode_decay_plus = make_map(m_file_plus, 1);
83 m_tauDecay.registerInDataStore();
84 m_event_metadata.isRequired();
85}
std::map< std::string, int > mode_decay_minus
Mapping for tau- decays.
std::map< std::string, int > mode_decay_plus
Mapping for tau+ decays.

◆ setAbortLevel()

void setAbortLevel ( int  abortLevel)
inherited

Configure the abort log level.

Definition at line 67 of file Module.cc.

68{
69 m_logConfig.setAbortLevel(static_cast<LogConfig::ELogLevel>(abortLevel));
70}
ELogLevel
Definition of the supported log levels.
Definition: LogConfig.h:26
void setAbortLevel(ELogLevel abortLevel)
Configure the abort level.
Definition: LogConfig.h:112

◆ setDebugLevel()

void setDebugLevel ( int  debugLevel)
inherited

Configure the debug messaging level.

Definition at line 61 of file Module.cc.

62{
63 m_logConfig.setDebugLevel(debugLevel);
64}
void setDebugLevel(int debugLevel)
Configure the debug messaging level.
Definition: LogConfig.h:98

◆ setDescription()

void setDescription ( const std::string &  description)
protectedinherited

Sets the description of the module.

Parameters
descriptionA description of the module.

Definition at line 214 of file Module.cc.

215{
216 m_description = description;
217}

◆ setLogConfig()

void setLogConfig ( const LogConfig logConfig)
inlineinherited

Set the log system configuration.

Definition at line 230 of file Module.h.

230{m_logConfig = logConfig;}

◆ setLogInfo()

void setLogInfo ( int  logLevel,
unsigned int  logInfo 
)
inherited

Configure the printed log information for the given level.

Parameters
logLevelThe log level (one of LogConfig::ELogLevel)
logInfoWhat kind of info should be printed? ORed combination of LogConfig::ELogInfo flags.

Definition at line 73 of file Module.cc.

74{
75 m_logConfig.setLogInfo(static_cast<LogConfig::ELogLevel>(logLevel), logInfo);
76}
void setLogInfo(ELogLevel logLevel, unsigned int logInfo)
Configure the printed log information for the given level.
Definition: LogConfig.h:127

◆ setLogLevel()

void setLogLevel ( int  logLevel)
inherited

Configure the log level.

Definition at line 55 of file Module.cc.

56{
57 m_logConfig.setLogLevel(static_cast<LogConfig::ELogLevel>(logLevel));
58}
void setLogLevel(ELogLevel logLevel)
Configure the log level.
Definition: LogConfig.cc:25

◆ setName()

void setName ( const std::string &  name)
inlineinherited

Set the name of the module.

Note
The module name is set when using the REG_MODULE macro, but the module can be renamed before calling process() using the set_name() function in your steering file.
Parameters
nameThe name of the module

Definition at line 214 of file Module.h.

214{ m_name = name; };

◆ setParamList()

void setParamList ( const ModuleParamList params)
inlineprotectedinherited

Replace existing parameter list.

Definition at line 501 of file Module.h.

501{ m_moduleParamList = params; }

◆ setParamPython()

void setParamPython ( const std::string &  name,
const boost::python::object &  pyObj 
)
privateinherited

Implements a method for setting boost::python objects.

The method supports the following types: list, dict, int, double, string, bool The conversion of the python object to the C++ type and the final storage of the parameter value is done in the ModuleParam class.

Parameters
nameThe unique name of the parameter.
pyObjThe object which should be converted and stored as the parameter value.

Definition at line 234 of file Module.cc.

235{
236 LogSystem& logSystem = LogSystem::Instance();
237 logSystem.updateModule(&(getLogConfig()), getName());
238 try {
240 } catch (std::runtime_error& e) {
241 throw std::runtime_error("Cannot set parameter '" + name + "' for module '"
242 + m_name + "': " + e.what());
243 }
244
245 logSystem.updateModule(nullptr);
246}
Class for logging debug, info and error messages.
Definition: LogSystem.h:46
void updateModule(const LogConfig *moduleLogConfig=nullptr, const std::string &moduleName="")
Sets the log configuration to the given module log configuration and sets the module name This method...
Definition: LogSystem.h:191
static LogSystem & Instance()
Static method to get a reference to the LogSystem instance.
Definition: LogSystem.cc:31
void setParamPython(const std::string &name, const PythonObject &pyObj)
Implements a method for setting boost::python objects.

◆ setParamPythonDict()

void setParamPythonDict ( const boost::python::dict &  dictionary)
privateinherited

Implements a method for reading the parameter values from a boost::python dictionary.

The key of the dictionary has to be the name of the parameter and the value has to be of one of the supported parameter types.

Parameters
dictionaryThe python dictionary from which the parameter values are read.

Definition at line 249 of file Module.cc.

250{
251
252 LogSystem& logSystem = LogSystem::Instance();
253 logSystem.updateModule(&(getLogConfig()), getName());
254
255 boost::python::list dictKeys = dictionary.keys();
256 int nKey = boost::python::len(dictKeys);
257
258 //Loop over all keys in the dictionary
259 for (int iKey = 0; iKey < nKey; ++iKey) {
260 boost::python::object currKey = dictKeys[iKey];
261 boost::python::extract<std::string> keyProxy(currKey);
262
263 if (keyProxy.check()) {
264 const boost::python::object& currValue = dictionary[currKey];
265 setParamPython(keyProxy, currValue);
266 } else {
267 B2ERROR("Setting the module parameters from a python dictionary: invalid key in dictionary!");
268 }
269 }
270
271 logSystem.updateModule(nullptr);
272}
void setParamPython(const std::string &name, const boost::python::object &pyObj)
Implements a method for setting boost::python objects.
Definition: Module.cc:234

◆ setPropertyFlags()

void setPropertyFlags ( unsigned int  propertyFlags)
inherited

Sets the flags for the module properties.

Parameters
propertyFlagsbitwise OR of EModulePropFlags

Definition at line 208 of file Module.cc.

209{
210 m_propertyFlags = propertyFlags;
211}

◆ setReturnValue() [1/2]

void setReturnValue ( bool  value)
protectedinherited

Sets the return value for this module as bool.

The bool value is saved as an integer with the convention 1 meaning true and 0 meaning false. The value can be used in the steering file to divide the analysis chain into several paths.

Parameters
valueThe value of the return value.

Definition at line 227 of file Module.cc.

228{
229 m_hasReturnValue = true;
230 m_returnValue = value;
231}

◆ setReturnValue() [2/2]

void setReturnValue ( int  value)
protectedinherited

Sets the return value for this module as integer.

The value can be used in the steering file to divide the analysis chain into several paths.

Parameters
valueThe value of the return value.

Definition at line 220 of file Module.cc.

221{
222 m_hasReturnValue = true;
223 m_returnValue = value;
224}

◆ setType()

void setType ( const std::string &  type)
protectedinherited

Set the module type.

Only for use by internal modules (which don't use the normal REG_MODULE mechanism).

Definition at line 48 of file Module.cc.

49{
50 if (!m_type.empty())
51 B2FATAL("Trying to change module type from " << m_type << " is not allowed, the value is assumed to be fixed.");
52 m_type = type;
53}

◆ TauolaBelle2DecayMode()

int TauolaBelle2DecayMode ( const std::string &  s,
int  chg 
)
private

Classifies the decays of the event and assigns a decay mode.

Definition at line 763 of file TauDecayModeModule.cc.

764{
765 std::map<std::string, int> mode_decay = (chg < 0) ? mode_decay_minus : mode_decay_plus;
766 map<std::string, int>::iterator itr ;
767 for (itr = mode_decay.begin(); itr != mode_decay.end(); ++itr) {
768 if (state == itr-> first) {
769 int mode = itr-> second;
770 if (mode == 39) {
771 if (chg < 0 && m_isEtaPizPizPizFromTauMinus) mode = 42;
772 if (chg > 0 && m_isEtaPizPizPizFromTauPlus) mode = 42;
773 }
774 if (mode == 49) {
775 if (chg < 0 && !m_isOmegaPimPipFromTauMinus) mode = 130;
776 if (chg > 0 && !m_isOmegaPimPipFromTauPlus) mode = 130;
777 }
778 if (mode == 131) {
779 if (chg < 0 && !m_isOmegaPimPipFromTauMinus) mode = 236;
780 if (chg > 0 && !m_isOmegaPimPipFromTauPlus) mode = 236;
781 }
782 if (mode == 247) {
783 if (chg < 0 && !m_isEtaPizPizPizFromTauMinus) mode = 15;
784 if (chg > 0 && !m_isEtaPizPizPizFromTauPlus) mode = 15;
785 }
786 return mode;
787 }
788 }
789 return -1;
790}

◆ terminate()

virtual void terminate ( void  )
inlinevirtualinherited

This method is called at the end of the event processing.

This method is called only once after the event processing finished. Use this method for cleaning up, closing files, etc.

This method can be implemented by subclasses.

Reimplemented in ARICHBackgroundModule, BeamabortModule, BgoModule, CaveModule, ClawModule, CLAWSModule, DosiModule, FANGSModule, He3tubeModule, MicrotpcModule, Ph1bpipeModule, Ph1sustrModule, PindiodeModule, PlumeModule, QcsmonitorModule, SrsensorModule, GetEventFromSocketModule, CalibrationCollectorModule, CosmicsAlignmentValidationModule, CurlTaggerModule, EventKinematicsModule, FlavorTaggerInfoFillerModule, LowEnergyPi0IdentificationExpertModule, LowEnergyPi0VetoExpertModule, ParticleKinematicFitterModule, ParticleLoaderModule, ParticleMassHypothesesUpdaterModule, ParticleMassUpdaterModule, ParticleMCDecayStringModule, ParticleMomentumUpdaterModule, ParticleStatsModule, ParticleWeightingLookUpCreatorModule, RemoveParticlesNotInListsModule, SkimFilterModule, TreeFitterModule, VariablesToEventBasedTreeModule, VariablesToHistogramModule, VariablesToNtupleModule, arichBtestModule, ARICHNtupleModule, arichToNtupleModule, B2BIIMCParticlesMonitorModule, B2BIIConvertMdstModule, B2BIIFixMdstModule, B2BIIMdstInputModule, BelleMCOutputModule, BeamBkgGeneratorModule, BeamBkgHitRateMonitorModule, BeamBkgMixerModule, BeamBkgTagSetterModule, BGOverlayInputModule, AnalysisPhase1StudyModule, NtuplePhase1_v6Module, ReprocessorModule, BeamabortStudyModule, BeamDigitizerModule, BgoDigitizerModule, BgoStudyModule, ClawDigitizerModule, ClawStudyModule, ClawsDigitizerModule, ClawsStudyModule, CsiDigitizer_v2Module, CsIDigitizerModule, CsiModule, CsiStudy_v2Module, CsIStudyModule, DosiDigitizerModule, DosiStudyModule, FANGSDigitizerModule, FANGSStudyModule, He3DigitizerModule, He3tubeStudyModule, MicrotpcStudyModule, TpcDigitizerModule, PinDigitizerModule, PindiodeStudyModule, PlumeDigitizerModule, QcsmonitorDigitizerModule, QcsmonitorStudyModule, CDCCosmicAnalysisModule, CDCCrossTalkAdderModule, CDCCRTestModule, CDCDigitizerModule, cdcDQM7Module, CDCDQMModule, ScanCDCGeoModule, CDCInitialT0DeterminationModule, CDCPackerModule, CDCRecoTrackFilterModule, CDCUnpackerModule, DAQPerfModule, RxSocketModule, TxSocketModule, DqmHistoManagerModule, MonitorDataModule, TrackAnaModule, Ds2SampleModule, ReceiveEventModule, HLTDQM2ZMQModule, HLTDs2ZMQModule, ElapsedTimeModule, DeSerializerModule, DeSerializerPXDModule, GenRawSendModule, Root2RawModule, SerializerModule, CertifyParallelModule, Ds2RawModule, Ds2RbufModule, EvReductionModule, FastRbuf2DsModule, Raw2DsModule, RawInputModule, Rbuf2DsModule, Rbuf2RbufModule, Ds2RawFileModule, PartialSeqRootReaderModule, SeqRootMergerModule, StorageDeserializerModule, StorageRootOutputModule, StorageSerializerModule, DisplayModule, PhysicsObjectsDQMModule, PhysicsObjectsMiraBelleBhabhaModule, PhysicsObjectsMiraBelleDst2Module, PhysicsObjectsMiraBelleDstModule, PhysicsObjectsMiraBelleHadronModule, PhysicsObjectsMiraBelleModule, ECLBackgroundModule, ECLChargedPIDModule, ECLChargedPIDDataAnalysisModule, ECLChargedPIDDataAnalysisValidationModule, ECLClusterPSDModule, ECLCompressBGOverlayModule, ECLCovarianceMatrixModule, ECLCRFinderModule, EclCovMatrixNtupleModule, ECLDataAnalysisModule, ECLDigiStudyModule, ECLDigitCalibratorModule, ECLDigitizerModule, ECLDigitizerPureCsIModule, EclDisplayModule, ECLDQMModule, ECLDQMEXTENDEDModule, ECLDQMOutOfTimeDigitsModule, ECLFillCellIdMappingModule, ECLFinalizerModule, ECLHitDebugModule, ECLLocalMaximumFinderModule, ECLLOMModule, ECLMatchingPerformanceExpertModule, ECLPackerModule, ECLShowerCorrectorModule, ECLShowerShapeModule, ECLSplitterN1Module, ECLSplitterN2Module, ECLTrackClusterMatchingModule, ECLTrackClusterMatchingParametrizationExpertModule, ECLTrackClusterMatchingPerformanceModule, ECLTRGInformationModule, ECLTrimShowersAndDigitsModule, ECLUnpackerModule, eclWaveformCalibCollectorModule, ECLWaveformFitModule, HistoModule, MergeDataStoreModule, SubEventModule, SwitchDataStoreModule, ProgressBarModule, RandomBarrierModule, HistoManagerModule, ProfileModule, RootInputModule, RootOutputModule, SeqRootInputModule, SeqRootOutputModule, AsyncWrapper, RxModule, TxModule, ZMQRxOutputModule, ZMQRxWorkerModule, ZMQTxInputModule, ZMQTxWorkerModule, AafhInputModule, BabayagaNLOInputModule, BBBremInputModule, BHWideInputModule, CRYInputModule, EvtGenDecayModule, FragmentationModule, HepMCInputModule, HepMCOutputModule, GeneratedVertexDisplacerModule, GeneratorPreselectionModule, HepevtOutputModule, OverrideGenerationFlagsModule, RemoveMCParticlesModule, KKGenInputModule, KoralWInputModule, PhokharaInputModule, TeeggInputModule, TrepsInputModule, GeometryModule, SoftwareTriggerModule, SoftwareTriggerResultPrinterModule, BKLMAnaModule, BKLMDigitAnalyzerModule, BKLMSimHistogrammerModule, BKLMTrackingModule, EKLMDataCheckerModule, KLMClusterEfficiencyModule, KLMClustersReconstructorModule, KLMDigitizerModule, KLMDQMModule, KLMDQM2Module, KLMPackerModule, KLMReconstructorModule, KLMScintillatorSimulatorModule, KLMUnpackerModule, MasterClassModule, MVAExpertModule, MVAMultipleExpertsModule, AWESOMEBasicModule, PXDBackgroundModule, PXDClustersFromTracksModule, PXDPerformanceModule, PXDSpacePointCreatorModule, CheckErrorEventModule, Convert2RawDetModule, Root2BinaryModule, CDCDedxCorrectionModule, CDCDedxDQMModule, CDCDedxPIDModule, CDCDedxScanModule, CDCDedxSkimModule, CDCDedxSkimCDSTModule, CDCDedxValidationModule, HitLevelInfoWriterModule, DataWriterModule, ECLExpertModule, KLMExpertModule, KlongValidationModule, KLMMuonIDDNNExpertModule, PIDNtupleModule, VXDDedxPIDModule, FullSimModule, FullSimTimingModule, SVDBackgroundModule, SVDChannelMappingModule, SVDHotStripFinderModule, SVDChargeSharingAnalysisModule, SVDClusterQualityEstimatorCalibrationModule, SVDClusterQualityEstimatorModule, SVDCrossTalkFinderModule, svdDumpModule, SVDPackerModule, SVDClusterEvaluationTrueInfoModule, SVDClusterFilterModule, SVDEventT0PerformanceTTreeModule, SVDMaxStripTTreeModule, SVDPerformanceTTreeModule, SVDShaperDigitsFromTracksModule, SVDCoGTimeEstimatorModule, SVDDataFormatCheckModule, SVD3SamplesEmulatorModule, SVDDigitizerModule, SVDTriggerQualityGeneratorModule, SVDSpacePointCreatorModule, SVDSpacePointQICalibrationModule, TOPAlignerModule, TOPBackgroundModule, TOPBunchFinderModule, TOPChannelT0CalibratorModule, TOPChannelT0MCModule, TOPCommonT0CalibratorModule, TOPCosmicT0FinderModule, TOPTriggerDigitizerModule, TOPDoublePulseGeneratorModule, TOPGainEfficiencyCalculatorModule, TOPLaserHitSelectorModule, TOPInterimFENtupleModule, TOPLaserCalibratorModule, TOPLLScannerModule, TOPMCTrackMakerModule, TOPModuleT0CalibratorModule, TOPNtupleModule, TOPPackerModule, TOPPDFCheckerModule, TOPRawDigitConverterModule, TOPRingPlotterModule, TOPTBCComparatorModule, TOPTimeBaseCalibratorModule, TOPUnpackerModule, TOPWaveformFeatureExtractorModule, TOPXTalkChargeShareSetterModule, ExtModule, GenfitVisModule, BeamSpotMonitorModule, KinkFinderModule, Chi2MCTrackMatcherModule, MCV0MatcherModule, MCTrackCandClassifierModule, MuidModule, ROIReadTestModule, SVDROIFinderAnalysisDataModule, SVDROIFinderAnalysisModule, SVDROIFinderModule, CurlingTrackCandSplitterModule, GFTC2SPTCConverterModule, PhaseSpaceAnalysisModule, RT2SPTCConverterModule, SpacePoint2TrueHitConnectorModule, SpacePointCreatorTestModule, SPTC2GFTCConverterModule, SPTCRefereeModule, TCConvertersTestModule, StandardTrackingPerformanceModule, TrackFilterModule, CollectorTestModule, StudyMaterialEffectsModule, EffPlotsModule, FillTrackFitNtupleModule, HitXPModule, TrackingPerformanceEvaluationModule, V0findingPerformanceEvaluationModule, TrackQETrainingDataCollectorModule, V0FinderModule, SecMapTrainerBaseModule, SecMapTrainerVXDTFModule, TrackFinderVXDAnalizerModule, VXDQETrainingDataCollectorModule, FastBDTClassifierAnalyzerModule, FastBDTClassifierTrainingModule, MLSegmentNetworkProducerModule, NoKickCutsEvalModule, SegmentNetworkAnalyzerModule, SPTC2RTConverterModule, VXDTFTrainingDataCollectorModule, FindletModule< AFindlet >, FindletModule< HitBasedT0Extractor >, FindletModule< CKFToSVDSeedFindlet >, FindletModule< CKFToSVDFindlet >, FindletModule< CosmicsTrackMergerFindlet >, FindletModule< DATCONFPGAFindlet >, FindletModule< MCVXDCDCTrackMergerFindlet >, FindletModule< vxdHoughTracking::SVDHoughTracking >, FindletModule< CKFToCDCFindlet >, FindletModule< CKFToCDCFromEclFindlet >, FindletModule< CKFToPXDFindlet >, FindletModule< AsicBackgroundLibraryCreator >, FindletModule< CDCTrackingEventLevelMdstInfoFillerFromHitsFindlet >, FindletModule< CDCTrackingEventLevelMdstInfoFillerFromSegmentsFindlet >, FindletModule< AxialSegmentPairCreator >, FindletModule< AxialStraightTrackFinder >, FindletModule< AxialTrackCreatorMCTruth >, FindletModule< AxialTrackCreatorSegmentHough >, FindletModule< AxialTrackFinderHough >, FindletModule< AxialTrackFinderLegendre >, FindletModule< ClusterBackgroundDetector >, FindletModule< ClusterPreparer >, FindletModule< ClusterRefiner< BridgingWireHitRelationFilter > >, FindletModule< FacetCreator >, FindletModule< HitReclaimer >, FindletModule< MonopoleAxialTrackFinderLegendre >, FindletModule< MonopoleStereoHitFinder >, FindletModule< MonopoleStereoHitFinderQuadratic >, FindletModule< SegmentCreatorFacetAutomaton >, FindletModule< SegmentCreatorMCTruth >, FindletModule< SegmentFinderFacetAutomaton >, FindletModule< SegmentFitter >, FindletModule< SegmentLinker >, FindletModule< SegmentOrienter >, FindletModule< SegmentPairCreator >, FindletModule< SegmentRejecter >, FindletModule< SegmentTrackCombiner >, FindletModule< SegmentTripleCreator >, FindletModule< StereoHitFinder >, FindletModule< SuperClusterCreator >, FindletModule< TrackCombiner >, FindletModule< TrackCreatorSegmentPairAutomaton >, FindletModule< TrackCreatorSegmentTripleAutomaton >, FindletModule< TrackCreatorSingleSegments >, FindletModule< TrackExporter >, FindletModule< TrackFinderAutomaton >, FindletModule< TrackFinderCosmics >, FindletModule< TrackFinder >, FindletModule< TrackFinderSegmentPairAutomaton >, FindletModule< TrackFinderSegmentTripleAutomaton >, FindletModule< TrackFlightTimeAdjuster >, FindletModule< TrackLinker >, FindletModule< TrackOrienter >, FindletModule< TrackQualityAsserter >, FindletModule< TrackQualityEstimator >, FindletModule< TrackRejecter >, FindletModule< WireHitBackgroundDetector >, FindletModule< WireHitCreator >, FindletModule< WireHitPreparer >, CDCTriggerNeuroDQMModule, CDCTriggerNeuroDQMOnlineModule, CDCTriggerHoughETFModule, CDCTrigger2DFinderModule, CDCTriggerNDFinderModule, CDCTriggerNeuroDataModule, CDCTriggerNeuroIDHistModule, CDCTriggerTSFFirmwareModule, CDCTriggerTSFModule, TRGCDCModule, TRGCDCETFUnpackerModule, TRGCDCT2DDQMModule, TRGCDCT3DConverterModule, TRGCDCT3DDQMModule, TRGCDCT3DUnpackerModule, TRGCDCTSFDQMModule, TRGCDCTSFUnpackerModule, TRGCDCTSStreamModule, CDCTriggerUnpackerModule, MCMatcherTRGECLModule, TRGECLFAMModule, TRGECLModule, TRGECLBGTCHitModule, TRGECLDQMModule, TRGECLQAMModule, TRGECLRawdataAnalysisModule, TRGECLTimingCalModule, TRGECLUnpackerModule, TRGGDLModule, TRGGDLDQMModule, TRGGDLDSTModule, TRGGDLSummaryModule, TRGGDLUnpackerModule, TRGGRLMatchModule, TRGGRLModule, TRGGRLProjectsModule, TRGGRLDQMModule, GRLNeuroModule, GRLNeuroTrainerModule, TRGGRLUnpackerModule, KLMTriggerModule, TRGTOPDQMModule, TRGTOPTRD2TTSConverterModule, TRGTOPUnpackerModule, TRGTOPUnpackerWaveformModule, TRGTOPWaveformPlotterModule, TRGRAWDATAModule, VXDMisalignmentModule, DQMHistAnalysisARICHModule, DQMHistAnalysisARICHMonObjModule, DQMHistAnalysisCDCDedxModule, DQMHistAnalysisCDCEpicsModule, DQMHistAnalysisCDCMonObjModule, DQMHistAnalysisDAQMonObjModule, DQMHistAnalysisECLModule, DQMHistAnalysisECLConnectedRegionsModule, DQMHistAnalysisECLOutOfTimeDigitsModule, DQMHistAnalysisECLShapersModule, DQMHistAnalysisECLSummaryModule, DQMHistAnalysisEpicsExampleModule, DQMHistAnalysisEventT0EfficiencyModule, DQMHistAnalysisEventT0TriggerJitterModule, DQMHistAnalysisExampleModule, DQMHistAnalysisExampleFlagsModule, DQMHistAnalysisHLTModule, DQMHistAnalysisHLTMonObjModule, DQMHistAnalysisInput2Module, DQMHistAnalysisInputPVSrvModule, DQMHistAnalysisInputTestModule, DQMHistAnalysisKLMModule, DQMHistAnalysisMiraBelleModule, DQMHistAnalysisMonObjModule, DQMHistAnalysisOutputFileModule, DQMHistAnalysisOutputMonObjModule, DQMHistAnalysisOutputRelayMsgModule, DQMHistAnalysisPeakModule, DQMHistAnalysisPXDFitsModule, DQMHistAnalysisSVDClustersOnTrackModule, DQMHistAnalysisSVDEfficiencyModule, DQMHistAnalysisSVDGeneralModule, DQMHistAnalysisSVDOccupancyModule, DQMHistAnalysisSVDOnMiraBelleModule, DQMHistAnalysisSVDUnpackerModule, DQMHistAnalysisTOPModule, DQMHistAnalysisTrackingAbortModule, DQMHistAnalysisTRGECLModule, DQMHistAnalysisTRGGDLModule, DQMHistAutoCanvasModule, DQMHistComparitorModule, DQMHistDeltaHistoModule, DQMHistReferenceModule, DQMHistSnapshotsModule, PyModule, PXDBgTupleProducerModule, PXDMCBgTupleProducerModule, PXDDQMEfficiencyNtupleModule, PXDDQMEfficiencyNtupleSelftrackModule, PXDDQMTrackRawNtupleModule, PXDPackerErrModule, PXDPackerModule, PXDReadRawBonnDAQModule, PXDReadRawBonnDAQMatchedModule, PXDReadRawONSENModule, PXDUnpackerModule, PXDUnpackerOldModule, PXDUnpackerOTModule, SVDDQMClustersOnTrackModule, SVDDQMExpressRecoModule, PXDROIFinderAnalysisModule, ROISenderModule, DQMHistAnalysisDeltaEpicsMonObjExampleModule, DQMHistAnalysisDeltaTestModule, DQMHistAnalysisPhysicsModule, DQMHistAnalysisPXDChargeModule, DQMHistAnalysisPXDCMModule, DQMHistAnalysisPXDDAQModule, DQMHistAnalysisPXDEffModule, DQMHistAnalysisPXDERModule, DQMHistAnalysisPXDInjectionModule, DQMHistAnalysisPXDReductionModule, DQMHistAnalysisPXDTrackChargeModule, DQMHistAnalysisRooFitExampleModule, DQMHistAnalysisRunNrModule, DQMHistAnalysisTRGModule, DQMHistOutputToEPICSModule, and ROIDQMModule.

Definition at line 176 of file Module.h.

176{};

Member Data Documentation

◆ finalStatePDGs

constexpr int finalStatePDGs[5] = { 11, 13, 211, 321, 2212 }
staticconstexprprivate

PDG codes accepted as charged final state particles in generation: {e, mu, pi, K, p}.

Definition at line 99 of file TauDecayModeModule.h.

◆ idOfTauMinus

int idOfTauMinus
private

Index of the generated tau-.

Definition at line 90 of file TauDecayModeModule.h.

◆ idOfTauPlus

int idOfTauPlus
private

Index of the generated tau+.

Definition at line 92 of file TauDecayModeModule.h.

◆ m_conditions

std::vector<ModuleCondition> m_conditions
privateinherited

Module condition, only non-null if set.

Definition at line 521 of file Module.h.

◆ m_description

std::string m_description
privateinherited

The description of the module.

Definition at line 511 of file Module.h.

◆ m_event_metadata

StoreObjPtr<EventMetaData> m_event_metadata
private

event number

Definition at line 52 of file TauDecayModeModule.h.

◆ m_file_minus

std::string m_file_minus
private

Alternative mapping for tau-.

Definition at line 94 of file TauDecayModeModule.h.

◆ m_file_plus

std::string m_file_plus
private

Alternative mapping for tau+.

Definition at line 96 of file TauDecayModeModule.h.

◆ m_hasReturnValue

bool m_hasReturnValue
privateinherited

True, if the return value is set.

Definition at line 518 of file Module.h.

◆ m_isEtaPizPizPizFromTauMinus

bool m_isEtaPizPizPizFromTauMinus
private

Flag for eta->pi0pi0pi0 decays from tau-.

Definition at line 121 of file TauDecayModeModule.h.

◆ m_isEtaPizPizPizFromTauPlus

bool m_isEtaPizPizPizFromTauPlus
private

Flag for eta->pi0pi0pi0 decays from tau+.

Definition at line 123 of file TauDecayModeModule.h.

◆ m_isOmegaPimPipFromTauMinus

bool m_isOmegaPimPipFromTauMinus
private

Flag for omega->pi-pi+ decays from tau-.

Definition at line 126 of file TauDecayModeModule.h.

◆ m_isOmegaPimPipFromTauPlus

bool m_isOmegaPimPipFromTauPlus
private

Flag for omega->pi-pi+ decays from tau+.

Definition at line 128 of file TauDecayModeModule.h.

◆ m_logConfig

LogConfig m_logConfig
privateinherited

The log system configuration of the module.

Definition at line 514 of file Module.h.

◆ m_megstar

double m_megstar
private

Energy of radiative photon from tau-.

Definition at line 78 of file TauDecayModeModule.h.

◆ m_mmode

Int_t m_mmode
private

ID of the decay channel of tau-.

Definition at line 68 of file TauDecayModeModule.h.

◆ m_moduleParamList

ModuleParamList m_moduleParamList
privateinherited

List storing and managing all parameter of the module.

Definition at line 516 of file Module.h.

◆ m_mprong

Int_t m_mprong
private

Prong of the decay channel of tau-.

Definition at line 73 of file TauDecayModeModule.h.

◆ m_name

std::string m_name
privateinherited

The name of the module, saved as a string (user-modifiable)

Definition at line 508 of file Module.h.

◆ m_package

std::string m_package
privateinherited

Package this module is found in (may be empty).

Definition at line 510 of file Module.h.

◆ m_pegstar

double m_pegstar
private

Energy of radiative photon from tau+.

Definition at line 81 of file TauDecayModeModule.h.

◆ m_pmode

Int_t m_pmode
private

ID of the decay channel of tau+.

Definition at line 70 of file TauDecayModeModule.h.

◆ m_pprong

Int_t m_pprong
private

Prong of the decay channel of tau+.

Definition at line 75 of file TauDecayModeModule.h.

◆ m_printmode

std::string m_printmode
protected

Parameter passed by the user to indicated the informationt to be printed.

Definition at line 45 of file TauDecayModeModule.h.

◆ m_propertyFlags

unsigned int m_propertyFlags
privateinherited

The properties of the module as bitwise or (with |) of EModulePropFlags.

Definition at line 512 of file Module.h.

◆ m_returnValue

int m_returnValue
privateinherited

The return value.

Definition at line 519 of file Module.h.

◆ m_tauDecay

StoreObjPtr<TauPairDecay> m_tauDecay
private

pointer to tau pair decay objects

Definition at line 50 of file TauDecayModeModule.h.

◆ m_taum_no

int m_taum_no
private

number of tau- unclassified events

Definition at line 53 of file TauDecayModeModule.h.

◆ m_tauminusdecaymode

std::string m_tauminusdecaymode
private

Variable name for the decay mode of the tau-.

Definition at line 63 of file TauDecayModeModule.h.

◆ m_taup_no

int m_taup_no
private

number of tau+ unclassified events

Definition at line 54 of file TauDecayModeModule.h.

◆ m_tauplusdecaymode

std::string m_tauplusdecaymode
private

Variable name for the decay mode of the tau+.

Definition at line 65 of file TauDecayModeModule.h.

◆ m_type

std::string m_type
privateinherited

The type of the module, saved as a string.

Definition at line 509 of file Module.h.

◆ MCParticles

StoreArray<MCParticle> MCParticles
private

StoreArray of MCParticles.

Definition at line 57 of file TauDecayModeModule.h.

◆ mode_decay_minus

std::map<std::string, int> mode_decay_minus
private

Mapping for tau- decays.

Definition at line 59 of file TauDecayModeModule.h.

◆ mode_decay_plus

std::map<std::string, int> mode_decay_plus
private

Mapping for tau+ decays.

Definition at line 61 of file TauDecayModeModule.h.

◆ Neutrinos

constexpr int Neutrinos[3] = { 12, 14, 16 }
staticconstexprprivate

PDG codes of neutrinos in final state particles in generation: {nu_e, nu_mu, mu_tau}.

Definition at line 102 of file TauDecayModeModule.h.

◆ numOfTauMinus

int numOfTauMinus
private

Number of tau- in the event.

Definition at line 86 of file TauDecayModeModule.h.

◆ numOfTauPlus

int numOfTauPlus
private

Number of tau+ in the event.

Definition at line 88 of file TauDecayModeModule.h.

◆ OrderedList

constexpr int OrderedList[46]
staticconstexprprivate
Initial value:
= {
16, -16, 14, -14, 12, -12,
11, -11, 13, -13, -211, 211, -321, 321, -2212, 2212,
111, 310, 130, 221, 223, 331, 333,
-213, 213, 113,
-323, 323, 313, -313,
-20213, 20213,
-9000211, 9000211, 9000111, -10211, 10211, 10111,
-10213, 10213,
20223, 9010221,
3122, -3122,
94144,
22
}

PDG codes of ORDERED particles.

Definition at line 105 of file TauDecayModeModule.h.

◆ tauPair

bool tauPair
private

Boolean variable used to identify tau event.

Definition at line 84 of file TauDecayModeModule.h.

◆ vec_a00_1450

std::vector<int> vec_a00_1450
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 166 of file TauDecayModeModule.h.

◆ vec_a00_980

std::vector<int> vec_a00_980
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 163 of file TauDecayModeModule.h.

◆ vec_a0m_1450

std::vector<int> vec_a0m_1450
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 167 of file TauDecayModeModule.h.

◆ vec_a0m_980

std::vector<int> vec_a0m_980
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 164 of file TauDecayModeModule.h.

◆ vec_a0p_1450

std::vector<int> vec_a0p_1450
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 168 of file TauDecayModeModule.h.

◆ vec_a0p_980

std::vector<int> vec_a0p_980
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 165 of file TauDecayModeModule.h.

◆ vec_a1m

std::vector<int> vec_a1m
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 161 of file TauDecayModeModule.h.

◆ vec_a1p

std::vector<int> vec_a1p
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 162 of file TauDecayModeModule.h.

◆ vec_alpha

std::vector<int> vec_alpha
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 175 of file TauDecayModeModule.h.

◆ vec_anue

std::vector<int> vec_anue
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 136 of file TauDecayModeModule.h.

◆ vec_anumu

std::vector<int> vec_anumu
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 134 of file TauDecayModeModule.h.

◆ vec_anut

std::vector<int> vec_anut
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 132 of file TauDecayModeModule.h.

◆ vec_apro

std::vector<int> vec_apro
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 145 of file TauDecayModeModule.h.

◆ vec_b1m

std::vector<int> vec_b1m
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 169 of file TauDecayModeModule.h.

◆ vec_b1p

std::vector<int> vec_b1p
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 170 of file TauDecayModeModule.h.

◆ vec_dau_tauminus

std::vector<int> vec_dau_tauminus
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 179 of file TauDecayModeModule.h.

◆ vec_dau_tauplus

std::vector<int> vec_dau_tauplus
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 180 of file TauDecayModeModule.h.

◆ vec_em

std::vector<int> vec_em
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 137 of file TauDecayModeModule.h.

◆ vec_ep

std::vector<int> vec_ep
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 138 of file TauDecayModeModule.h.

◆ vec_eta

std::vector<int> vec_eta
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 150 of file TauDecayModeModule.h.

◆ vec_etapr

std::vector<int> vec_etapr
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 152 of file TauDecayModeModule.h.

◆ vec_f0

std::vector<int> vec_f0
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 172 of file TauDecayModeModule.h.

◆ vec_f1

std::vector<int> vec_f1
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 171 of file TauDecayModeModule.h.

◆ vec_gam

std::vector<int> vec_gam
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 176 of file TauDecayModeModule.h.

◆ vec_k0l

std::vector<int> vec_k0l
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 149 of file TauDecayModeModule.h.

◆ vec_k0s

std::vector<int> vec_k0s
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 148 of file TauDecayModeModule.h.

◆ vec_km

std::vector<int> vec_km
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 143 of file TauDecayModeModule.h.

◆ vec_kp

std::vector<int> vec_kp
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 144 of file TauDecayModeModule.h.

◆ vec_kstar0

std::vector<int> vec_kstar0
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 159 of file TauDecayModeModule.h.

◆ vec_kstar0_br

std::vector<int> vec_kstar0_br
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 160 of file TauDecayModeModule.h.

◆ vec_kstarm

std::vector<int> vec_kstarm
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 157 of file TauDecayModeModule.h.

◆ vec_kstarp

std::vector<int> vec_kstarp
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 158 of file TauDecayModeModule.h.

◆ vec_lambda

std::vector<int> vec_lambda
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 173 of file TauDecayModeModule.h.

◆ vec_lmb_br

std::vector<int> vec_lmb_br
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 174 of file TauDecayModeModule.h.

◆ vec_mum

std::vector<int> vec_mum
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 139 of file TauDecayModeModule.h.

◆ vec_mup

std::vector<int> vec_mup
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 140 of file TauDecayModeModule.h.

◆ vec_nue

std::vector<int> vec_nue
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 135 of file TauDecayModeModule.h.

◆ vec_numu

std::vector<int> vec_numu
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 133 of file TauDecayModeModule.h.

◆ vec_nut

std::vector<int> vec_nut
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 131 of file TauDecayModeModule.h.

◆ vec_omega

std::vector<int> vec_omega
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 151 of file TauDecayModeModule.h.

◆ vec_phi

std::vector<int> vec_phi
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 153 of file TauDecayModeModule.h.

◆ vec_pi0

std::vector<int> vec_pi0
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 147 of file TauDecayModeModule.h.

◆ vec_pim

std::vector<int> vec_pim
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 141 of file TauDecayModeModule.h.

◆ vec_pip

std::vector<int> vec_pip
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 142 of file TauDecayModeModule.h.

◆ vec_pro

std::vector<int> vec_pro
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 146 of file TauDecayModeModule.h.

◆ vec_radgam_taum

std::vector<int> vec_radgam_taum
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 177 of file TauDecayModeModule.h.

◆ vec_radgam_taup

std::vector<int> vec_radgam_taup
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 178 of file TauDecayModeModule.h.

◆ vec_rho0

std::vector<int> vec_rho0
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 156 of file TauDecayModeModule.h.

◆ vec_rhom

std::vector<int> vec_rhom
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 154 of file TauDecayModeModule.h.

◆ vec_rhop

std::vector<int> vec_rhop
private

Variable name of the vector where particles identified in the event are stored.

Definition at line 155 of file TauDecayModeModule.h.


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