Class Reference for E1039 Core & Analysis Software
Fun4AllInputManager.cc
Go to the documentation of this file.
1 #include "Fun4AllInputManager.h"
2 #include <phool/phool.h>
3 #include "Fun4AllServer.h"
4 #include "SubsysReco.h"
5 
6 #include <boost/filesystem.hpp>
7 
8 #include <fstream>
9 #include <iostream>
10 
11 using namespace std;
12 
13 Fun4AllInputManager::Fun4AllInputManager(const string &name, const string &nodename, const string &topnodename)
14  : Fun4AllBase(name)
15  , InputNode(nodename)
16  , topNodeName(topnodename)
17  , mySyncManager(NULL)
18  , repeat(0)
19  , myrunnumber(0)
20  , initrun(0)
21 {
22  return;
23 }
24 
26 {
27  while (Subsystems.begin() != Subsystems.end())
28  {
29  if (verbosity)
30  {
31  Subsystems.back()->Verbosity(verbosity);
32  }
33  delete Subsystems.back();
34  Subsystems.pop_back();
35  }
36 }
37 
38 int Fun4AllInputManager::AddFile(const string &filename)
39 {
40  if (verbosity > 0)
41  {
42  cout << "Adding " << filename << " to list of input files for "
43  << Name() << endl;
44  }
45  filelist.push_back(filename);
46  filelist_copy.push_back(filename);
47  return 0;
48 }
49 
50 int Fun4AllInputManager::AddListFile(const string &filename, const int do_it)
51 {
52  // checking filesize to see if we have a text file
53  if (boost::filesystem::exists(filename.c_str()))
54  {
55  if (boost::filesystem::is_regular_file(filename.c_str()))
56  {
57  uintmax_t fsize = boost::filesystem::file_size(filename.c_str());
58  if (fsize > 1000000 && !do_it)
59  {
60  cout << "size of " << filename
61  << " is suspiciously large for a text file: "
62  << fsize << " bytes" << endl;
63  cout << "if you really want to use " << filename
64  << " as list file (it will be used as a text file containing a list of input files), use AddListFile(\""
65  << filename << "\",1)" << endl;
66  return -1;
67  }
68  }
69  else
70  {
71  cout << filename << " is not a regular file" << endl;
72  return -1;
73  }
74  }
75  else
76  {
77  cout << PHWHERE << "Could not open " << filename << endl;
78  return -1;
79  }
80  ifstream infile;
81  infile.open(filename.c_str(), ios_base::in);
82  if (!infile)
83  {
84  cout << PHWHERE << "Could not open " << filename << endl;
85  return -1;
86  }
87  string FullLine;
88  getline(infile, FullLine);
89  while (!infile.eof())
90  {
91  if (FullLine.size() && FullLine[0] != '#') // remove comments
92  {
93  AddFile(FullLine);
94  }
95  else if (FullLine.size())
96  {
97  if (verbosity > 0)
98  {
99  cout << "Found Comment: " << FullLine << endl;
100  }
101  }
102 
103  getline(infile, FullLine);
104  }
105  infile.close();
106  return 0;
107 }
108 
109 void Fun4AllInputManager::Print(const string &what) const
110 {
111  if (what == "ALL" || what == "FILELIST")
112  {
113  cout << "--------------------------------------" << endl
114  << endl;
115  cout << "List of input files in Fun4AllInputManager " << Name() << ":" << endl;
116 
117  list<string>::const_iterator iter;
118  for (iter = filelist.begin(); iter != filelist.end(); ++iter)
119  {
120  cout << *iter << endl;
121  }
122  }
123  if (what == "ALL" || what == "SUBSYSTEMS")
124  {
125  // loop over the map and print out the content (name and location in memory)
126  cout << "--------------------------------------" << endl
127  << endl;
128  cout << "List of SubsysRecos in Fun4AllInputManager " << Name() << ":" << endl;
129 
130  vector<SubsysReco *>::const_iterator miter;
131  for (miter = Subsystems.begin(); miter != Subsystems.end(); ++miter)
132  {
133  cout << (*miter)->Name() << endl;
134  }
135  cout << endl;
136  }
137  return;
138 }
139 
141 {
143  int iret = subsystem->Init(se->topNode(topNodeName));
144  if (iret)
145  {
146  cout << PHWHERE << " Error initializing subsystem "
147  << subsystem->Name() << ", return code: " << iret << endl;
148  return iret;
149  }
150  if (verbosity > 0)
151  {
152  cout << "Registering Subsystem " << subsystem->Name() << endl;
153  }
154  Subsystems.push_back(subsystem);
155  return 0;
156 }
157 
159 {
160  if (!Subsystems.empty())
161  {
163  vector<SubsysReco *>::iterator iter;
164  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
165  {
166  if (!initrun)
167  {
168  (*iter)->InitRun(se->topNode(topNodeName));
169  initrun = 1;
170  }
171  if (verbosity > 0)
172  {
173  cout << Name() << ": Fun4AllInpuManager::EventReject processing " << (*iter)->Name() << endl;
174  }
175  if ((*iter)->process_event(se->topNode(topNodeName)) != Fun4AllReturnCodes::EVENT_OK)
176  {
178  }
179  }
180  }
182 }
183 
185 {
186  if (filelist_copy.empty())
187  {
188  cout << Name() << ": ResetFileList can only be used with filelists" << endl;
189  return -1;
190  }
191  filelist.clear();
193  return 0;
194 }
#define NULL
Definition: Pdb.h:9
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
virtual void Print(const std::string &what="ALL") const
std::list< std::string > filelist
std::list< std::string > filelist_copy
Fun4AllInputManager(const std::string &name="DUMMY", const std::string &nodename="DST", const std::string &topnodename="TOP")
int AddFile(const std::string &filename)
int AddListFile(const std::string &filename, const int do_it=0)
int registerSubsystem(SubsysReco *subsystem)
std::vector< SubsysReco * > Subsystems
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
Definition: Fun4AllServer.h:59
virtual int Init(PHCompositeNode *)
Definition: SubsysReco.h:41
#define PHWHERE
Definition: phool.h:23