![]() |
eventAnalysis
7.0-49-g0ac7482
|
An analysis module which carries some very simple event-level header information. More...
#include <TBeamSummaryDataModule.hxx>
Classes | |
class | TBeamSummaryData |
Public Member Functions | |
TBeamSummaryDataModule (const char *name="BeamSummaryData", const char *title="Beam Summary Data") | |
virtual | ~TBeamSummaryDataModule () |
Int_t | GetBufferSize () |
ROOT output parameters, usually no need to touch. More... | |
std::string const | GetCVSID () const |
std::string const | GetCVSTagName () const |
std::string const | GetDescription () const |
std::string const | GetDirectoryName () const |
Returns the name of the directory which the output of a particular module will be saved in. More... | |
char const * | GetName () |
TTree const * | GetOutputTree () const |
The output tree. More... | |
Int_t | GetSplitLevel () |
ROOT output parameters, usually no need to touch. More... | |
char const * | GetTitle () |
EType | GetTreeType () const |
Returns the type of tree, header, truth, or recon. More... | |
void | Initialize (TTree *tree) |
virtual Bool_t | IsEnabled () const |
Whether the module is enable or not. More... | |
virtual Bool_t | IsEnabledByDefault () const |
Is the module is enabled by default. More... | |
virtual bool | IsFullEventWorthSaving (ND::TND280Event &event) |
Whether the module thinks it is worth saving the entire oaEvent event tree entry for this event. More... | |
virtual Bool_t | IsUsedForPreselection () const |
Whether the module should call IsFullEventWorthSaving() function for each event, to decide if the full oaEvent info for that event should be saved in the output. More... | |
void | KillOutputTree () |
virtual void | Print () |
Prints a simple message describing the module. More... | |
virtual bool | Process (ND::TND280Event &event) |
Gets the run and event IDs and calls FillTree with the event, and then actually calls fOutputTree->Fill. More... | |
virtual Bool_t | ProcessFirstEvent (ND::TND280Event &) |
Is meant to reference back to the original file [FIXME] The EventTRef does not currently work. More... | |
virtual void | SayAvailableOpts (std::string indent="") |
Subclasses should override this to let a user know what options are available. More... | |
void | SetBufferSize (Int_t buffersize) |
ROOT output parameters, usually no need to touch. More... | |
virtual void | SetDisabled () |
Disables the module. More... | |
virtual void | SetEnabled (Bool_t isenabled=true) |
Sets whether the module is enabled. More... | |
void | SetInputDirectory (std::string dir) |
void | SetNameTitle (char const *name, char const *title) |
void | SetSplitLevel (Int_t splitlevel) |
ROOT output parameters, usually no need to touch. More... | |
virtual void | SetUsedForPreselection (Bool_t isused=true) |
Sets whether the module should call IsFullEventWorthSaving() function for each event, to decide if the full oaEvent info for that event should be saved in the output. More... | |
Public Attributes | |
TClonesArray * | fBeamSummaryData |
Data structure which contains beamsummary data information. More... | |
Int_t | fBeamSummaryDataStatus |
Tree Entries. More... | |
Int_t | fND280Spill |
ND280 Spill Number. 16 bit. More... | |
Protected Types | |
enum | EType { kHeader = 0, kTruth, kRecon, kLowLevel, kNTypes } |
Protected Member Functions | |
virtual Bool_t | Configure (std::string &option) |
A function that allows the module to be configured from an external class without any dependencies. More... | |
void | FillConfigTree (TTree *configTree) |
virtual bool | FillTree (ND::TND280Event &) |
Fill all the stuff that goes in the output tree. More... | |
virtual void | InitializeBranches () |
Initialize Branches. Don't do anything else in this function. More... | |
virtual void | InitializeModule () |
Initialize Module, override if necessary. More... | |
Protected Attributes | |
Int_t | fBufferSize |
Buffer Size for TBranch. More... | |
std::string | fCVSID |
Defined if an official tagged version. More... | |
std::string | fCVSTagName |
Defined if an official tagged version. More... | |
std::string | fDescription |
A longish descrition of the analysis. More... | |
Int_t | fEventID |
Bool_t | fFilledConfigTree |
std::string | fInputDirectory |
An input directory where analysis modules can search for extra files. More... | |
Bool_t | fIsEnabled |
Bool_t | fIsMC |
Bool_t | fIsUsedForPreselection |
std::string | fName |
TTree * | fOutputTree |
Int_t | fPreselected |
Int_t | fRunID |
Int_t | fSplitLevel |
Split Level for TBranch. More... | |
Int_t | fSubrunID |
std::string | fTitle |
Private Attributes | |
int | fEventsWithNoBSD |
int | fTotalEvents |
An analysis module which carries some very simple event-level header information.
It just contains the RunID, EventNumber, and a TRef reference back to the original event file. The latter does not work at this time.
Definition at line 36 of file TBeamSummaryDataModule.hxx.
|
protectedinherited |
Enumerator | |
---|---|
kHeader | |
kTruth | |
kRecon | |
kLowLevel | |
kNTypes |
Definition at line 54 of file TAnalysisModuleBase.hxx.
ND::TBeamSummaryDataModule::TBeamSummaryDataModule | ( | const char * | name = "BeamSummaryData" , |
const char * | title = "Beam Summary Data" |
||
) |
Definition at line 14 of file TBeamSummaryDataModule.cxx.
References CVSID, CVSTAG, fBeamSummaryData, ND::TAnalysisModuleBase::fCVSID, ND::TAnalysisModuleBase::fCVSTagName, ND::TAnalysisModuleBase::fDescription, fEventsWithNoBSD, ND::TAnalysisModuleBase::fIsEnabled, fTotalEvents, and ND::TAnalysisModuleBase::SetNameTitle().
|
virtual |
Definition at line 31 of file TBeamSummaryDataModule.cxx.
|
protectedvirtual |
A function that allows the module to be configured from an external class without any dependencies.
Should be overridden with a function that responds to the string option, and returns true if configuration succedded. Used in TAnalysisLoop.cxx (and RunEventAnalysis.exe) for options of the form: -O TTruthTrajectoriesModule=SaveAll
Reimplemented from ND::TAnalysisModuleBase.
Definition at line 228 of file TBeamSummaryDataModule.cxx.
|
protectedvirtual |
Reimplemented from ND::TAnalysisModuleBase.
Definition at line 54 of file TBeamSummaryDataModule.cxx.
References ND::TAnalysisModuleBase::FillConfigTree().
|
protectedvirtual |
Fill all the stuff that goes in the output tree.
Return true if everything went well. Otherwise, the module may be disabled! (return definition changed Apr 2009!)
Implements ND::TAnalysisModuleBase.
Definition at line 67 of file TBeamSummaryDataModule.cxx.
References ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::BeamBunchFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::BeamBunchTiming, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::BeamDirectionOnTarget, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::BeamFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::BeamRunNumber, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::BeamRunNumber, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::BeamSizeOnTarget, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::BeamTiming, ND::TBeamSummaryDataModule::TBeamSummaryData::BSDVersion, ND::TBeamSummaryDataModule::TBeamSummaryData::CT5BeamBunchFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::CT5BeamBunchTiming, ND::TBeamSummaryDataModule::TBeamSummaryData::CT5ProtonsPerBunch, ND::TBeamSummaryDataModule::TBeamSummaryData::CT5ProtonsPerSpill, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::GoodGPSFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::GoodSpillFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::GoodSpillFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::GPS1TriggerTime, ND::TBeamSummaryDataModule::TBeamSummaryData::GPS1TriggerTimeNanoSecond, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::GPSStatus, ND::TBeamSummaryDataModule::TBeamSummaryData::Horn1CurrentSum, ND::TBeamSummaryDataModule::TBeamSummaryData::Horn2CurrentSum, ND::TBeamSummaryDataModule::TBeamSummaryData::Horn3CurrentSum, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::HornBusBarCurrent, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::HornCurrent, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MagSetID, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MRRunNumber, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonICPeak, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonICTotalQ, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonICwX, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonICwY, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonICX, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonICY, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonSiPeak, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonSiTotalQ, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonSiwX, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonSiwY, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonSiX, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::MumonSiY, ND::TBeamSummaryDataModule::TBeamSummaryData::OfficialBeamBunchFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::OfficialBeamBunchTiming, ND::TBeamSummaryDataModule::TBeamSummaryData::OfficialBeamFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::OfficialCTNumber, ND::TBeamSummaryDataModule::TBeamSummaryData::OfficialProtonsPerBunch, ND::TBeamSummaryDataModule::TBeamSummaryData::OfficialProtonsPerSpill, ND::TBeamSummaryDataModule::TBeamSummaryData::OtherData, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRLightYield, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRwX, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRwXError, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRwY, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRwYError, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRX, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRXError, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRY, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::OTRYError, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::ProtonsPerBunch, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::ProtonsPerSpill, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::RunType, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::SpillFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::SpillNumber, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::SpillNumber, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::TriggerFlag, ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::TriggerTime, and ND::TBeamSummaryDataModule::TBeamSummaryData::TOtherData::TriggerTimeNanoSecond.
|
inherited |
ROOT output parameters, usually no need to touch.
Definition at line 123 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fBufferSize.
|
inherited |
Definition at line 136 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fCVSID.
|
inherited |
Definition at line 135 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fCVSTagName.
|
inherited |
Definition at line 134 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fDescription.
|
inherited |
Returns the name of the directory which the output of a particular module will be saved in.
Definition at line 22 of file TAnalysisModuleBase.cxx.
Referenced by ND::TAnalysisLoop::Initialize().
|
inherited |
Definition at line 114 of file TAnalysisModuleBase.cxx.
Referenced by ND::TTrackerReconModule::FillConfigTree(), ND::TGlobalReconModule::FillConfigTree(), ND::TTrackerECALReconModule::OutputManager::FillHoughTransformInformation(), ND::TAnalysisLoop::Finalize(), ND::TAnalysisLoop::Initialize(), and ND::TAnalysisLoop::operator()().
|
inherited |
The output tree.
Definition at line 139 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fOutputTree.
|
inherited |
ROOT output parameters, usually no need to touch.
Definition at line 129 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fSplitLevel.
|
inherited |
Definition at line 118 of file TAnalysisModuleBase.cxx.
Referenced by ND::TAnalysisLoop::Initialize().
|
virtualinherited |
Returns the type of tree, header, truth, or recon.
This is overridden in the derived base classes such as TAnalysisReconModuleBase, so users do not need to override it explicitly
Implements ND::TAnalysisModuleBase.
Definition at line 17 of file TAnalysisHeaderModuleBase.hxx.
References ND::TAnalysisModuleBase::kHeader.
|
inherited |
Definition at line 37 of file TAnalysisModuleBase.cxx.
Referenced by ND::TAnalysisLoop::Initialize().
|
protectedvirtual |
Initialize Branches. Don't do anything else in this function.
Implements ND::TAnalysisModuleBase.
Definition at line 39 of file TBeamSummaryDataModule.cxx.
|
protectedvirtual |
Initialize Module, override if necessary.
Reimplemented from ND::TAnalysisModuleBase.
Definition at line 37 of file TBeamSummaryDataModule.cxx.
|
virtualinherited |
Whether the module is enable or not.
Definition at line 84 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fIsEnabled.
Referenced by ND::TAnalysisLoop::Initialize(), and ND::TAnalysisLoop::operator()().
|
virtual |
Is the module is enabled by default.
Default is to enable module. To set to disable override this method in the derived module.
Reimplemented from ND::TAnalysisModuleBase.
Definition at line 144 of file TBeamSummaryDataModule.hxx.
|
virtualinherited |
Whether the module thinks it is worth saving the entire oaEvent event tree entry for this event.
eventAnalysis can be used for event pre-selection in this way. Activated with the –oaEvent-preselection=<moduleclass>> command- line argument
Reimplemented in ND::TTrackerECALReconModule::OutputManager, ND::TReconPerformanceEvalModule, and ND::TTRExReconModule.
Definition at line 90 of file TAnalysisModuleBase.cxx.
|
virtualinherited |
Whether the module should call IsFullEventWorthSaving() function for each event, to decide if the full oaEvent info for that event should be saved in the output.
Definition at line 93 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fIsUsedForPreselection.
Referenced by ND::TAnalysisLoop::Initialize(), and ND::TAnalysisLoop::operator()().
|
inherited |
Definition at line 140 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fOutputTree.
|
virtualinherited |
Prints a simple message describing the module.
Should be overridden for more detail
Definition at line 99 of file TAnalysisModuleBase.cxx.
Referenced by ND::TAnalysisLoop::Initialize().
|
virtualinherited |
Gets the run and event IDs and calls FillTree with the event, and then actually calls fOutputTree->Fill.
Definition at line 77 of file TAnalysisModuleBase.cxx.
Referenced by ND::TAnalysisLoop::operator()().
|
virtual |
Is meant to reference back to the original file [FIXME] The EventTRef does not currently work.
Implements ND::TAnalysisModuleBase.
Definition at line 224 of file TBeamSummaryDataModule.cxx.
|
virtualinherited |
Subclasses should override this to let a user know what options are available.
Reimplemented in ND::TTrackerECALReconModule::OutputManager, ND::TGlobalReconModule, ND::TTagsModule, and ND::TBasicHeaderModule.
Definition at line 156 of file TAnalysisModuleBase.hxx.
|
inherited |
ROOT output parameters, usually no need to touch.
Definition at line 126 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fBufferSize.
|
virtualinherited |
Disables the module.
Is called when an exception is thrown inside the module.
Definition at line 74 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::SetEnabled().
Referenced by ND::TAnalysisLoop::Initialize(), and ND::TAnalysisLoop::operator()().
|
virtualinherited |
Sets whether the module is enabled.
This only refer to modules which have been included for consideration by being instantiated in TAnalysisLoop.cxx or similar.
Definition at line 70 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fIsEnabled.
Referenced by ND::TAnalysisLoop::Initialize(), ND::TAnalysisModuleBase::SetDisabled(), and ND::TAnalysisLoop::SetOption().
|
inherited |
Definition at line 158 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fInputDirectory.
|
inherited |
Definition at line 108 of file TAnalysisModuleBase.cxx.
Referenced by ND::TTrackerECALReconModule::OutputManager::OutputManager(), ND::TBasicHeaderModule::TBasicHeaderModule(), TBeamSummaryDataModule(), ND::TECALTestbeamModule::TECALTestbeamModule(), ND::TFgdOnlyModule::TFgdOnlyModule(), ND::TGeometrySummaryModule::TGeometrySummaryModule(), ND::TGlobalReconModule::TGlobalReconModule(), ND::TGRooTrackerVtxModule::TGRooTrackerVtxModule(), ND::TLowLevelInfoModule::TLowLevelInfoModule(), ND::TNRooTrackerVtxModule::TNRooTrackerVtxModule(), ND::TP0DECALReconModule::TP0DECALReconModule(), ND::TReconPerformanceEvalModule::TReconPerformanceEvalModule(), ND::TSFGReconModule::TSFGReconModule(), ND::TSmrdReconModule::TSmrdReconModule(), ND::TTagsModule::TTagsModule(), ND::TTrackerReconModule::TTrackerReconModule(), ND::TTRExReconModule::TTRExReconModule(), ND::TTruthTrajectoriesModule::TTruthTrajectoriesModule(), and ND::TTruthVerticesModule::TTruthVerticesModule().
|
inherited |
ROOT output parameters, usually no need to touch.
Definition at line 132 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fSplitLevel.
Referenced by ND::TTrackerReconModule::InitializeBranches(), ND::TGlobalReconModule::InitializeBranches(), and ND::TP0DECALReconModule::TP0DECALReconModule().
|
virtualinherited |
Sets whether the module should call IsFullEventWorthSaving() function for each event, to decide if the full oaEvent info for that event should be saved in the output.
Definition at line 79 of file TAnalysisModuleBase.hxx.
References ND::TAnalysisModuleBase::fIsUsedForPreselection.
Referenced by ND::TAnalysisLoop::SetOption().
TClonesArray* ND::TBeamSummaryDataModule::fBeamSummaryData |
Data structure which contains beamsummary data information.
Definition at line 164 of file TBeamSummaryDataModule.hxx.
Referenced by TBeamSummaryDataModule().
Int_t ND::TBeamSummaryDataModule::fBeamSummaryDataStatus |
Tree Entries.
Flag : Beam Summary Data is available ornot in the spill. 1 = BSD is available. 0 isnot.
Definition at line 162 of file TBeamSummaryDataModule.hxx.
|
protectedinherited |
Buffer Size for TBranch.
Has a default value that can be changed per module.
Definition at line 184 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::GetBufferSize(), ND::TFgdOnlyModule::InitializeBranches(), ND::TSmrdReconModule::InitializeBranches(), ND::TTrackerReconModule::InitializeBranches(), ND::TSFGReconModule::InitializeBranches(), ND::TGlobalReconModule::InitializeBranches(), ND::TTrackerECALReconModule::OutputManager::InitializeBranches(), and ND::TAnalysisModuleBase::SetBufferSize().
|
protectedinherited |
Defined if an official tagged version.
Definition at line 192 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::GetCVSID(), ND::TTrackerECALReconModule::OutputManager::OutputManager(), ND::TBasicHeaderModule::TBasicHeaderModule(), TBeamSummaryDataModule(), ND::TECALTestbeamModule::TECALTestbeamModule(), ND::TFgdOnlyModule::TFgdOnlyModule(), ND::TGeometrySummaryModule::TGeometrySummaryModule(), ND::TGlobalReconModule::TGlobalReconModule(), ND::TP0DECALReconModule::TP0DECALReconModule(), ND::TReconPerformanceEvalModule::TReconPerformanceEvalModule(), ND::TSFGReconModule::TSFGReconModule(), ND::TSmrdReconModule::TSmrdReconModule(), ND::TTagsModule::TTagsModule(), ND::TTrackerReconModule::TTrackerReconModule(), ND::TTRExReconModule::TTRExReconModule(), ND::TTruthTrajectoriesModule::TTruthTrajectoriesModule(), and ND::TTruthVerticesModule::TTruthVerticesModule().
|
protectedinherited |
Defined if an official tagged version.
Definition at line 190 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::GetCVSTagName(), ND::TTrackerECALReconModule::OutputManager::OutputManager(), ND::TBasicHeaderModule::TBasicHeaderModule(), TBeamSummaryDataModule(), ND::TECALTestbeamModule::TECALTestbeamModule(), ND::TFgdOnlyModule::TFgdOnlyModule(), ND::TGeometrySummaryModule::TGeometrySummaryModule(), ND::TGlobalReconModule::TGlobalReconModule(), ND::TP0DECALReconModule::TP0DECALReconModule(), ND::TReconPerformanceEvalModule::TReconPerformanceEvalModule(), ND::TSFGReconModule::TSFGReconModule(), ND::TSmrdReconModule::TSmrdReconModule(), ND::TTagsModule::TTagsModule(), ND::TTrackerReconModule::TTrackerReconModule(), ND::TTRExReconModule::TTRExReconModule(), ND::TTruthTrajectoriesModule::TTruthTrajectoriesModule(), and ND::TTruthVerticesModule::TTruthVerticesModule().
|
protectedinherited |
A longish descrition of the analysis.
Definition at line 188 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::GetDescription(), ND::TTrackerECALReconModule::OutputManager::OutputManager(), ND::TBasicHeaderModule::TBasicHeaderModule(), TBeamSummaryDataModule(), ND::TECALTestbeamModule::TECALTestbeamModule(), ND::TFgdOnlyModule::TFgdOnlyModule(), ND::TGeometrySummaryModule::TGeometrySummaryModule(), ND::TGlobalReconModule::TGlobalReconModule(), ND::TGRooTrackerVtxModule::TGRooTrackerVtxModule(), ND::TLowLevelInfoModule::TLowLevelInfoModule(), ND::TNRooTrackerVtxModule::TNRooTrackerVtxModule(), ND::TP0DECALReconModule::TP0DECALReconModule(), ND::TReconPerformanceEvalModule::TReconPerformanceEvalModule(), ND::TSFGReconModule::TSFGReconModule(), ND::TSmrdReconModule::TSmrdReconModule(), ND::TTagsModule::TTagsModule(), ND::TTrackerReconModule::TTrackerReconModule(), ND::TTRExReconModule::TTRExReconModule(), ND::TTruthTrajectoriesModule::TTruthTrajectoriesModule(), and ND::TTruthVerticesModule::TTruthVerticesModule().
|
protectedinherited |
Definition at line 198 of file TAnalysisModuleBase.hxx.
|
private |
Definition at line 169 of file TBeamSummaryDataModule.hxx.
Referenced by TBeamSummaryDataModule().
|
protectedinherited |
Definition at line 174 of file TAnalysisModuleBase.hxx.
Referenced by ND::TTrackerReconModule::FillConfigTree(), and ND::TGlobalReconModule::FillConfigTree().
|
protectedinherited |
An input directory where analysis modules can search for extra files.
Definition at line 201 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::SetInputDirectory().
|
protectedinherited |
Definition at line 176 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::IsEnabled(), ND::TTrackerECALReconModule::OutputManager::OutputManager(), ND::TAnalysisModuleBase::SetEnabled(), ND::TBasicHeaderModule::TBasicHeaderModule(), TBeamSummaryDataModule(), ND::TECALTestbeamModule::TECALTestbeamModule(), ND::TFgdOnlyModule::TFgdOnlyModule(), ND::TGeometrySummaryModule::TGeometrySummaryModule(), ND::TGlobalReconModule::TGlobalReconModule(), ND::TGRooTrackerVtxModule::TGRooTrackerVtxModule(), ND::TLowLevelInfoModule::TLowLevelInfoModule(), ND::TNRooTrackerVtxModule::TNRooTrackerVtxModule(), ND::TP0DECALReconModule::TP0DECALReconModule(), ND::TReconPerformanceEvalModule::TReconPerformanceEvalModule(), ND::TSFGReconModule::TSFGReconModule(), ND::TSmrdReconModule::TSmrdReconModule(), ND::TTagsModule::TTagsModule(), ND::TTrackerReconModule::TTrackerReconModule(), ND::TTRExReconModule::TTRExReconModule(), ND::TTruthTrajectoriesModule::TTruthTrajectoriesModule(), and ND::TTruthVerticesModule::TTruthVerticesModule().
|
protectedinherited |
Definition at line 206 of file TAnalysisModuleBase.hxx.
Referenced by ND::TTrackerECALReconModule::OutputManager::FillECalIsoVertexingInformation(), ND::TTrackerECALReconModule::OutputManager::FillHoughTransformInformation(), ND::TTrackerECALReconModule::OutputManager::FillTree(), ND::TGlobalReconModule::FillVertexInfo(), ND::TTrackerECALReconModule::OutputManager::OutputManager(), ND::TTrackerECALReconModule::OutputManager::ProcessFinalContainer(), and ND::TTrackerECALReconModule::OutputManager::ProcessOtherContainer().
|
protectedinherited |
Definition at line 178 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::IsUsedForPreselection(), and ND::TAnalysisModuleBase::SetUsedForPreselection().
|
protectedinherited |
Definition at line 203 of file TAnalysisModuleBase.hxx.
Int_t ND::TBeamSummaryDataModule::fND280Spill |
ND280 Spill Number. 16 bit.
Definition at line 163 of file TBeamSummaryDataModule.hxx.
|
protectedinherited |
Definition at line 180 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::GetOutputTree(), ND::TFgdOnlyModule::InitializeBranches(), ND::TSmrdReconModule::InitializeBranches(), ND::TTrackerReconModule::InitializeBranches(), ND::TSFGReconModule::InitializeBranches(), ND::TGlobalReconModule::InitializeBranches(), ND::TTrackerECALReconModule::OutputManager::InitializeBranches(), and ND::TAnalysisModuleBase::KillOutputTree().
|
protectedinherited |
Definition at line 199 of file TAnalysisModuleBase.hxx.
|
protectedinherited |
Definition at line 196 of file TAnalysisModuleBase.hxx.
|
protectedinherited |
Split Level for TBranch.
Definition at line 186 of file TAnalysisModuleBase.hxx.
Referenced by ND::TAnalysisModuleBase::GetSplitLevel(), ND::TFgdOnlyModule::InitializeBranches(), ND::TSmrdReconModule::InitializeBranches(), ND::TTrackerReconModule::InitializeBranches(), ND::TSFGReconModule::InitializeBranches(), ND::TGlobalReconModule::InitializeBranches(), ND::TTrackerECALReconModule::OutputManager::InitializeBranches(), and ND::TAnalysisModuleBase::SetSplitLevel().
|
protectedinherited |
Definition at line 197 of file TAnalysisModuleBase.hxx.
|
protectedinherited |
Definition at line 204 of file TAnalysisModuleBase.hxx.
|
private |
Definition at line 168 of file TBeamSummaryDataModule.hxx.
Referenced by TBeamSummaryDataModule().