5 #include <Event/ogzBuffer.h>
6 #include <Event/Event.h>
11 #include <sys/types.h>
18 const unsigned int sizeInMB,
32 unsigned long long maxmb =
MAXSIZE / (1024 * 1024);
33 cout <<
"setting maximum size to current max (in MB): " << maxmb << endl;
49 int irun = evt->getRunNumber();
50 unsigned filenamesize =
filerule.size() + 15;
52 char *outfilename =
new char[filenamesize];
54 int snprintfbytes = snprintf(outfilename, filenamesize,
filerule.c_str(), irun,
iseq);
55 if (
static_cast<unsigned>(snprintfbytes) > filenamesize)
57 cout <<
PHWHERE <<
" " <<
ThisName <<
": filename exceeds length " << filenamesize
58 <<
", tried " << snprintfbytes
59 <<
". probably it is the filerule" <<
filerule
60 <<
" which uses other than %010d-%04d for runnumber/segment" << endl;
64 outfile_desc = open(outfilename, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE ,
65 S_IRWXU | S_IROTH | S_IRGRP );
68 cout <<
"could not open " << outfilename <<
" quitting" << endl;
73 cout <<
"Fun4AllRolloverFileOutStream: opening new file " << outfilename << endl;
79 delete [] outfilename;
82 int status =
ob->addEvent(evt);
85 cout <<
ThisName <<
": ERROR WRITING OUT FILTERED EVENT "
86 << evt->getEvtSequence() <<
" FOR RUN "
87 << evt->getRunNumber() <<
" Status: " << status << endl;
104 os <<
"Fun4AllRolloverFileOutStream writing to " <<
filerule
static const unsigned int LENGTH
int verbosity
The verbosity level. 0 means not verbose at all.
Fun4AllEventOutputManager * mymanager
void SetOutfileName(const std::string &fname)
unsigned long long MAXSIZE
unsigned long long byteswritten
int WriteEventOut(Event *evt)
unsigned long long max_file_size
Fun4AllRolloverFileOutStream(const std::string &frule="OUTDATA-%010d-%04d.PRDFF", const unsigned int sizeInMB=0, const int offset=0, const int increment=1, const std::string &name="Fun4AllRolloverFileOutStream")
void identify(std::ostream &os=std::cout) const