Class Reference for E1039 Core & Analysis Software
Fun4AllEventOutputManager.cc
Go to the documentation of this file.
2 #include "Fun4AllServer.h"
5 
6 #include <phool/getClass.h>
7 
8 #include <Event/Event.h>
9 
10 #include <iostream>
11 #include <string>
12 #include <vector>
13 
14 using namespace std;
15 
17  , const string &filerule
18  , const unsigned int sizeInMB
19  , const int offset
20  , const int increment ):
21  Fun4AllOutputManager( myname )
22 {
23  outfilerule = filerule;
24  outstream = new Fun4AllRolloverFileOutStream(filerule, sizeInMB, offset, increment);
25  outstream->SetManager(this);
26  return ;
27 }
28 
30 {
31  if (outstream)
32  {
33  delete outstream;
34  }
35  return ;
36 }
37 
38 
39 void
40 Fun4AllEventOutputManager::Print(const string &what) const
41 {
42  cout << ThisName << " writes " << outfilerule << endl;
43  // base class print method
45 
46  return ;
47 }
48 
50 {
52  PHCompositeNode *topNode = se->topNode();
53  Event *evt = findNode::getClass<Event>(topNode, "PRDF");
54  if (!evt)
55  {
56  cout << PHWHERE << "0 Event Pointer" << endl;
57  return -1;
58  }
59  outstream->WriteEvent(evt);
60  return 0;
61 }
62 
63 int
65 {
66  int iret = -1;
67  if (outstream)
68  {
69  iret = outstream->AddPacket(ipkt);
70  }
71  else
72  {
73  cout << PHWHERE << "Cannot add packet" << endl;
74  }
75  return iret;
76 }
77 
78 int
79 Fun4AllEventOutputManager::AddPacketRange(const int ipktmin, const int ipktmax)
80 {
81  int iret = -1;
82  if (outstream)
83  {
84  iret = outstream->AddPacketRange(ipktmin, ipktmax);
85  }
86  else
87  {
88  cout << PHWHERE << "Cannot add packet" << endl;
89  }
90  return iret;
91 }
92 
93 int
95 {
96  int iret = -1;
97  if (outstream)
98  {
99  iret = outstream->DropPacket(ipkt);
100  }
101  else
102  {
103  cout << PHWHERE << "Cannot drop packet" << endl;
104  }
105  return iret;
106 }
107 
108 int
109 Fun4AllEventOutputManager::DropPacketRange(const int ipktmin, const int ipktmax)
110 {
111  int iret = -1;
112  if (outstream)
113  {
114  iret = outstream->DropPacketRange(ipktmin, ipktmax);
115  }
116  else
117  {
118  cout << PHWHERE << "Cannot drop packet" << endl;
119  }
120  return iret;
121 }
122 
123 void
125 {
126  outfilename = fname;
127  return ;
128 }
Definition: Event.h:13
std::string ThisName
Definition: Fun4AllBase.h:72
int AddPacketRange(const int minpacket, const int maxpacket)
int AddPacket(const int ipkt)
int DropPacket(const int ipkt)
int DropPacketRange(const int minpacket, const int maxpacket)
virtual int WriteEvent(Event *evt)
void SetManager(Fun4AllEventOutputManager *myman)
void Print(const std::string &what="ALL") const
print method (dump event selector)
int Write(PHCompositeNode *startNode)
write starting from given node
int AddPacketRange(const int ipktmin, const int ipktmax)
Fun4AllEventOutputManager(const std::string &myname="EVENTOUT", const std::string &filename="eventout.prdf", const unsigned int sizeInMB=0, const int offset=0, const int increment=1)
Fun4AllEventOutStream * outstream
void SetOutfileName(const std::string &fname)
int DropPacketRange(const int ipktmin, const int ipktmax)
virtual void Print(const std::string &what="ALL") const
print method (dump event selector)
std::string outfilename
output file name
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
Definition: Fun4AllServer.h:59
#define PHWHERE
Definition: phool.h:23