Class Reference for E1039 Core & Analysis Software
Fun4AllOutputManager Class Reference

#include </dev/shm/kenichi/update-github-e1039-doc/e1039-core/framework/fun4all/Fun4AllOutputManager.h>

+ Inheritance diagram for Fun4AllOutputManager:
+ Collaboration diagram for Fun4AllOutputManager:

Public Member Functions

virtual ~Fun4AllOutputManager ()
 destructor More...
 
virtual void Print (const std::string &what="ALL") const
 print method (dump event selector) More...
 
virtual int AddNode (const std::string &)
 add a node in outputmanager More...
 
virtual int StripNode (const std::string &)
 not write a node in outputmanager More...
 
virtual int AddEventSelector (const std::string &recomodule)
 add an event selector to the outputmanager. event will get written only if all event selectors process_event method return EVENT_OK More...
 
virtual int outfileopen (const std::string &)
 opens output file More...
 
virtual int RemoveNode (const std::string &)
 removes a node from outputmanager More...
 
int WriteGeneric (PHCompositeNode *startNode)
 Common method, called before calling virtual Write. More...
 
virtual int Write (PHCompositeNode *)
 write starting from given node More...
 
virtual int WriteNode (PHCompositeNode *)
 write specified node More...
 
virtual std::vector< std::string > * EventSelector ()
 retrieves pointer to vector of event selector module names More...
 
virtual std::vector< unsigned > * RecoModuleIndex ()
 retrieves pointer to vector of event selector module ids More...
 
virtual int DoNotWriteEvent (std::vector< int > *retcodes) const
 decides if event is to be written or not More...
 
virtual size_t EventsWritten () const
 get number of Events More...
 
virtual std::string OutFileName () const
 get output file name More...
 
- Public Member Functions inherited from Fun4AllBase
virtual ~Fun4AllBase ()
 
virtual const std::string Name () const
 Returns the name of this module. More...
 
virtual void Name (const std::string &name)
 Sets the name of this module. More...
 
virtual void Verbosity (const int ival)
 Sets the verbosity of this module (0 by default=quiet). More...
 
virtual void Verbosity (enu_Verbosity ival)
 Sets the verbosity of this module (0 by default=quiet). More...
 
virtual int Verbosity () const
 Gets the verbosity of this module. More...
 

Protected Member Functions

 Fun4AllOutputManager (const std::string &myname)
 
- Protected Member Functions inherited from Fun4AllBase
 Fun4AllBase (const std::string &name="NONAME")
 

Protected Attributes

size_t nEvents
 Number of Events. More...
 
std::vector< std::string > EventSelectors
 vector of event selectors modules More...
 
std::vector< unsigned > recomoduleindex
 vector of associated module indexes More...
 
std::string outfilename
 output file name More...
 
- Protected Attributes inherited from Fun4AllBase
std::string ThisName
 
int verbosity
 The verbosity level. 0 means not verbose at all. More...
 

Additional Inherited Members

- Public Types inherited from Fun4AllBase
enum  enu_Verbosity {
  VERBOSITY_QUIET = 0 , VERBOSITY_SOME = 1 , VERBOSITY_MORE = 2 , VERBOSITY_EVEN_MORE = 3 ,
  VERBOSITY_A_LOT = 4 , VERBOSITY_MAX = INT_MAX - 10
}
 

Detailed Description

Definition at line 11 of file Fun4AllOutputManager.h.

Constructor & Destructor Documentation

◆ ~Fun4AllOutputManager()

virtual Fun4AllOutputManager::~Fun4AllOutputManager ( )
inlinevirtual

destructor

Definition at line 16 of file Fun4AllOutputManager.h.

◆ Fun4AllOutputManager()

Fun4AllOutputManager::Fun4AllOutputManager ( const std::string &  myname)
protected

constructor. is protected since we do not want the class to be created in root macros

Definition at line 10 of file Fun4AllOutputManager.cc.

References nEvents.

Member Function Documentation

◆ AddEventSelector()

int Fun4AllOutputManager::AddEventSelector ( const std::string &  recomodule)
virtual

add an event selector to the outputmanager. event will get written only if all event selectors process_event method return EVENT_OK

Definition at line 18 of file Fun4AllOutputManager.cc.

References EventSelectors.

◆ AddNode()

virtual int Fun4AllOutputManager::AddNode ( const std::string &  )
inlinevirtual

add a node in outputmanager

Reimplemented in Fun4AllDstOutputManager.

Definition at line 23 of file Fun4AllOutputManager.h.

◆ DoNotWriteEvent()

int Fun4AllOutputManager::DoNotWriteEvent ( std::vector< int > *  retcodes) const
virtual

decides if event is to be written or not

Definition at line 67 of file Fun4AllOutputManager.cc.

References recomoduleindex.

◆ EventSelector()

virtual std::vector<std::string>* Fun4AllOutputManager::EventSelector ( )
inlinevirtual

retrieves pointer to vector of event selector module names

Definition at line 57 of file Fun4AllOutputManager.h.

References EventSelectors.

Referenced by Fun4AllServer::UpdateEventSelector().

+ Here is the caller graph for this function:

◆ EventsWritten()

virtual size_t Fun4AllOutputManager::EventsWritten ( ) const
inlinevirtual

get number of Events

Definition at line 68 of file Fun4AllOutputManager.h.

References nEvents.

Referenced by Print().

+ Here is the caller graph for this function:

◆ OutFileName()

virtual std::string Fun4AllOutputManager::OutFileName ( ) const
inlinevirtual

get output file name

Definition at line 71 of file Fun4AllOutputManager.h.

References outfilename.

◆ outfileopen()

virtual int Fun4AllOutputManager::outfileopen ( const std::string &  )
inlinevirtual

◆ Print()

void Fun4AllOutputManager::Print ( const std::string &  what = "ALL") const
virtual

print method (dump event selector)

Reimplemented from Fun4AllBase.

Reimplemented in Fun4AllHepMCOutputManager, Fun4AllEventOutputManager, and Fun4AllDstOutputManager.

Definition at line 46 of file Fun4AllOutputManager.cc.

References EventSelectors, EventsWritten(), recomoduleindex, and Fun4AllBase::ThisName.

Referenced by Fun4AllDstOutputManager::Print(), Fun4AllEventOutputManager::Print(), Fun4AllServer::Print(), and Fun4AllHepMCOutputManager::Print().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ RecoModuleIndex()

virtual std::vector<unsigned>* Fun4AllOutputManager::RecoModuleIndex ( )
inlinevirtual

retrieves pointer to vector of event selector module ids

Definition at line 61 of file Fun4AllOutputManager.h.

References recomoduleindex.

Referenced by Fun4AllServer::UpdateEventSelector().

+ Here is the caller graph for this function:

◆ RemoveNode()

virtual int Fun4AllOutputManager::RemoveNode ( const std::string &  )
inlinevirtual

removes a node from outputmanager

Reimplemented in Fun4AllDstOutputManager.

Definition at line 42 of file Fun4AllOutputManager.h.

◆ StripNode()

virtual int Fun4AllOutputManager::StripNode ( const std::string &  )
inlinevirtual

not write a node in outputmanager

Reimplemented in Fun4AllDstOutputManager.

Definition at line 27 of file Fun4AllOutputManager.h.

◆ Write()

virtual int Fun4AllOutputManager::Write ( PHCompositeNode )
inlinevirtual

write starting from given node

Reimplemented in Fun4AllRUSOutputManager, Fun4AllSRawEventOutputManager, Fun4AllSpillSRawEventOutputManager, Fun4AllTriggerDstOutputManager, Fun4AllSpillDstOutputManager, Fun4AllHepMCOutputManager, Fun4AllPrdfOutputManager, Fun4AllEventOutputManager, Fun4AllDstOutputManager, Fun4AllVectEventOutputManager, and Fun4AllSRawEventOutputManagerV2.

Definition at line 49 of file Fun4AllOutputManager.h.

Referenced by WriteGeneric().

+ Here is the caller graph for this function:

◆ WriteGeneric()

int Fun4AllOutputManager::WriteGeneric ( PHCompositeNode startNode)

Common method, called before calling virtual Write.

Definition at line 37 of file Fun4AllOutputManager.cc.

References nEvents, and Write().

+ Here is the call graph for this function:

◆ WriteNode()

virtual int Fun4AllOutputManager::WriteNode ( PHCompositeNode )
inlinevirtual

write specified node

Reimplemented in Fun4AllDstOutputManager.

Definition at line 53 of file Fun4AllOutputManager.h.

Member Data Documentation

◆ EventSelectors

std::vector<std::string> Fun4AllOutputManager::EventSelectors
protected

vector of event selectors modules

Definition at line 85 of file Fun4AllOutputManager.h.

Referenced by AddEventSelector(), EventSelector(), and Print().

◆ nEvents

size_t Fun4AllOutputManager::nEvents
protected

Number of Events.

Definition at line 82 of file Fun4AllOutputManager.h.

Referenced by EventsWritten(), Fun4AllOutputManager(), Fun4AllHepMCOutputManager::Write(), and WriteGeneric().

◆ outfilename

◆ recomoduleindex

std::vector<unsigned> Fun4AllOutputManager::recomoduleindex
protected

vector of associated module indexes

Definition at line 88 of file Fun4AllOutputManager.h.

Referenced by DoNotWriteEvent(), Print(), and RecoModuleIndex().


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