6 #include <boost/filesystem.hpp>
16 , topNodeName(topnodename)
42 cout <<
"Adding " <<
filename <<
" to list of input files for "
53 if (boost::filesystem::exists(
filename.c_str()))
55 if (boost::filesystem::is_regular_file(
filename.c_str()))
57 uintmax_t fsize = boost::filesystem::file_size(
filename.c_str());
58 if (fsize > 1000000 && !do_it)
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(\""
71 cout <<
filename <<
" is not a regular file" << endl;
81 infile.open(
filename.c_str(), ios_base::in);
88 getline(infile, FullLine);
91 if (FullLine.size() && FullLine[0] !=
'#')
95 else if (FullLine.size())
99 cout <<
"Found Comment: " << FullLine << endl;
103 getline(infile, FullLine);
111 if (what ==
"ALL" || what ==
"FILELIST")
113 cout <<
"--------------------------------------" << endl
115 cout <<
"List of input files in Fun4AllInputManager " <<
Name() <<
":" << endl;
117 list<string>::const_iterator iter;
120 cout << *iter << endl;
123 if (what ==
"ALL" || what ==
"SUBSYSTEMS")
126 cout <<
"--------------------------------------" << endl
128 cout <<
"List of SubsysRecos in Fun4AllInputManager " <<
Name() <<
":" << endl;
130 vector<SubsysReco *>::const_iterator miter;
133 cout << (*miter)->Name() << endl;
146 cout <<
PHWHERE <<
" Error initializing subsystem "
147 << subsystem->
Name() <<
", return code: " << iret << endl;
152 cout <<
"Registering Subsystem " << subsystem->
Name() << endl;
163 vector<SubsysReco *>::iterator iter;
173 cout <<
Name() <<
": Fun4AllInpuManager::EventReject processing " << (*iter)->Name() << endl;
188 cout <<
Name() <<
": ResetFileList can only be used with filelists" << endl;
int verbosity
The verbosity level. 0 means not verbose at all.
virtual const std::string Name() const
Returns the name of this module.
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
virtual int Init(PHCompositeNode *)