Class Reference for E1039 Core & Analysis Software
Fun4AllOutputManager.cc
Go to the documentation of this file.
1 #include "Fun4AllOutputManager.h"
2 #include "Fun4AllServer.h"
3 
4 #include <iostream>
5 #include <string>
6 #include <vector>
7 
8 using namespace std;
9 
11 {
12  nEvents = 0;
13  return ;
14 }
15 
16 //___________________________________________________________________
17 int
18 Fun4AllOutputManager::AddEventSelector(const string &recomodule)
19 {
20  string newselector = recomodule;
21  vector<string>::iterator iter;
22 
23  for (iter = EventSelectors.begin(); iter != EventSelectors.end(); ++iter)
24  if ( *iter == newselector)
25  {
26  cout << "Event Selector " << newselector << " allready in list" << endl;
27  return -1;
28  }
29 
30  cout << "EventSelector: " << &EventSelectors << endl;
31  EventSelectors.push_back(newselector);
32  return 0;
33 }
34 
35 //___________________________________________________________________
36 int
38 {
39  nEvents++;
40  int iret = Write(startNode);
41  return iret;
42 }
43 
44 //___________________________________________________________________
45 void
46 Fun4AllOutputManager::Print(const string &what) const
47 {
48  if (what == "ALL" || what == "EVENTSELECTOR")
49  {
50  unsigned icnt = 0;
51  for ( vector<string>::const_iterator iter = EventSelectors.begin(); iter != EventSelectors.end(); ++iter)
52  {
53  cout << ThisName << ": Reco Module " << *iter << " select Events" << endl;
54  cout << ThisName << ": Reco Module Index: " << recomoduleindex[icnt] << endl;
55  icnt++;
56  }
57  }
58  if (what == "ALL" || what == "EVENTSWRITTEN")
59  {
60  cout << ThisName << " wrote " << EventsWritten() << " Events" << endl;
61  }
62  return;
63 }
64 
65 //___________________________________________________________________
66 int
67 Fun4AllOutputManager::DoNotWriteEvent(vector <int> *retcodes) const
68 {
69  int iret = 0;
70  for( vector<unsigned>::const_iterator iter = recomoduleindex.begin(); iter != recomoduleindex.end(); ++iter) {
71  const unsigned index = *iter;
72  iret += (*retcodes)[index];
73  }
74  return iret;
75 }
76 
std::string ThisName
Definition: Fun4AllBase.h:72
virtual int DoNotWriteEvent(std::vector< int > *retcodes) const
decides if event is to be written or not
std::vector< unsigned > recomoduleindex
vector of associated module indexes
virtual int AddEventSelector(const std::string &recomodule)
add an event selector to the outputmanager. event will get written only if all event selectors proces...
int WriteGeneric(PHCompositeNode *startNode)
Common method, called before calling virtual Write.
virtual size_t EventsWritten() const
get number of Events
virtual void Print(const std::string &what="ALL") const
print method (dump event selector)
Fun4AllOutputManager(const std::string &myname)
size_t nEvents
Number of Events.
virtual int Write(PHCompositeNode *)
write starting from given node
std::vector< std::string > EventSelectors
vector of event selectors modules