Class Reference for E1039 Core & Analysis Software
Fun4AllDstOutputManager.cc
Go to the documentation of this file.
2 #include "Fun4AllServer.h"
3 
4 #include <phool/PHNode.h>
6 #include <phool/PHNodeIterator.h>
7 
8 #include <cstdlib>
9 #include <iostream>
10 #include <string>
11 #include <vector>
12 
13 using namespace std;
14 
15 Fun4AllDstOutputManager::Fun4AllDstOutputManager(const string &myname, const string &fname):
16  Fun4AllOutputManager( myname )
17 {
18  outfilename = fname;
19  if (fname == "") {
20  dstOut = 0;
21  } else {
22  dstOut = new PHNodeIOManager(fname.c_str(), PHWrite);
23  if (!dstOut->isFunctional()) {
24  delete dstOut;
25  cout << PHWHERE << "Could not open " << fname << ". Exit." << endl;
26  exit(1);
27  }
29  }
30  return ;
31 }
32 
34 {
35  delete dstOut;
36  return ;
37 }
38 
39 int
40 Fun4AllDstOutputManager::AddNode(const string &nodename)
41 {
42  string newnode = nodename;
43  vector<string>::const_iterator iter;
44  for (iter = savenodes.begin(); iter != savenodes.end(); ++iter)
45  {
46  if ( *iter == newnode)
47  {
48  cout << "Node " << newnode << " allready in list" << endl;
49  return -1;
50  }
51  }
52  savenodes.push_back(newnode);
53  return 0;
54 }
55 
56 int
57 Fun4AllDstOutputManager::StripNode(const string &nodename)
58 {
59  string newnode = nodename;
60  vector<string>::const_iterator iter;
61  for (iter = stripnodes.begin(); iter != stripnodes.end(); ++iter)
62  {
63  if ( *iter == newnode)
64  {
65  cout << "Node " << newnode << " allready in list" << endl;
66  return -1;
67  }
68  }
69  stripnodes.push_back(newnode);
70  return 0;
71 }
72 
73 int
75 {
76  dstOut = new PHNodeIOManager(fname.c_str(), PHWrite);
77  if (!dstOut->isFunctional())
78  {
79  delete dstOut;
80  dstOut = 0;
81  cout << PHWHERE << " Could not open " << fname << endl;
82  return -1;
83  }
84 
86  return 0;
87 }
88 
89 int
90 Fun4AllDstOutputManager::RemoveNode(const string &nodename)
91 {
92  string node = nodename;
93  vector<string>::iterator iter;
94  for (iter = savenodes.begin(); iter != savenodes.end(); ++iter)
95  if ( *iter == node) {
96  savenodes.erase(iter);
97  cout << "Removing " << node << " from list" << endl;
98  return 0;
99  }
100 
101  cout << "Could not find " << node << " in list" << endl;
102 
103  return -1;
104 
105 }
106 
107 void
108 Fun4AllDstOutputManager::Print(const string &what) const
109 {
110  if (what == "ALL" || what == "WRITENODES")
111  {
112  vector<string>::const_iterator iter;
113  cout << ThisName << " writes " << outfilename << endl;
114  if (savenodes.empty())
115  {
116  if (stripnodes.empty())
117  {
118  cout << ThisName << ": All Nodes will be written out" << endl;
119  }
120  else
121  {
122  for (iter = stripnodes.begin(); iter != stripnodes.end(); ++iter)
123  {
124  cout << ThisName << ": Node " << *iter << " will be stripped" << endl;
125  }
126  }
127  }
128  else
129  {
130  for (iter = savenodes.begin(); iter != savenodes.end(); ++iter)
131  {
132  cout << ThisName << ": Node " << *iter << " is written out" << endl;
133  }
134  }
135  }
136  // base class print method
138 
139  return;
140 }
141 
142 
143 // All nodes are set to transient by the framework
144 // here we first change the nodes we want to write out
145 // to persistent and then call the write method
146 // of the io manager
147 // afterwards the nodes we just wrote out are changed back
148 // to transient
149 // if we want to strip nodes (only meaningful if we take the default
150 // that everything is written out), those nodes are declared transient
151 int
153 {
154  PHNodeIterator nodeiter(startNode);
155  vector<string>::iterator iter;
156  PHNode *ChosenNode = 0;
157  if (savenodes.empty())
158  {
160  se->MakeNodesPersistent(startNode);
161  if (! stripnodes.empty())
162  {
163  for (iter = stripnodes.begin(); iter != stripnodes.end(); ++iter)
164  {
165  ChosenNode = nodeiter.findFirst("PHIODataNode", iter->c_str());
166  if (ChosenNode)
167  {
168  ChosenNode->makeTransient();
169  }
170  else
171  {
172  if (verbosity > 0)
173  {
174  cout << PHWHERE << ThisName << ": Node " << *iter
175  << " does not exist" << endl;
176  }
177  }
178 
179  }
180  }
181  }
182  else
183  {
184  for (iter = savenodes.begin(); iter != savenodes.end(); ++iter)
185  {
186  ChosenNode = nodeiter.findFirst("PHIODataNode", iter->c_str());
187  if (ChosenNode)
188  {
189  ChosenNode->makePersistent();
190  }
191  else
192  {
193  if (verbosity > 0)
194  {
195  cout << PHWHERE << ThisName << ": Node " << *iter
196  << " does not exist" << endl;
197  }
198  }
199 
200  }
201  }
202 
203  dstOut->write(startNode);
204  if (savenodes.empty())
205  {
207  se->MakeNodesTransient(startNode);
208  }
209  else
210  {
211  for (iter = savenodes.begin(); iter != savenodes.end(); ++iter)
212  {
213  ChosenNode = nodeiter.findFirst("PHIODataNode", iter->c_str());
214  if (ChosenNode)
215  {
216  ChosenNode->makeTransient();
217  }
218  }
219  }
220  return 0;
221 }
222 
223 int
225 {
226  delete dstOut;
227 
229  dstOut->write(thisNode);
230  delete dstOut;
231  dstOut = 0;
232  return 0;
233 }
234 
235 void
237 {
238  dstOut->SetRealTimeSave(true);
239 }
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
std::string ThisName
Definition: Fun4AllBase.h:72
void Print(const std::string &what="ALL") const
print method (dump event selector)
std::vector< std::string > savenodes
int StripNode(const std::string &nodename)
not write a node in outputmanager
virtual int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllDstOutputManager(const std::string &myname="DSTOUT", const std::string &filename="dstout.root")
virtual int WriteNode(PHCompositeNode *thisNode)
write specified node
std::vector< std::string > stripnodes
int AddNode(const std::string &nodename)
add a node in outputmanager
int outfileopen(const std::string &fname)
opens output file
int RemoveNode(const std::string &nodename)
removes a node from outputmanager
virtual void Print(const std::string &what="ALL") const
print method (dump event selector)
std::string outfilename
output file name
static Fun4AllServer * instance()
int MakeNodesTransient(PHCompositeNode *startNode)
int MakeNodesPersistent(PHCompositeNode *startNode)
void SetRealTimeSave(const bool onoff)
PHBoolean SetCompressionLevel(const int level)
virtual PHBoolean write(PHCompositeNode *)
int isFunctional() const
PHNode * findFirst(const std::string &, const std::string &)
Definition: PHNode.h:15
void makeTransient()
Definition: PHNode.h:45
void makePersistent()
Definition: PHNode.h:28
@ PHRunTree
Definition: phool.h:16
@ PHWrite
Definition: phool.h:15
@ PHUpdate
Definition: phool.h:15
#define PHWHERE
Definition: phool.h:23