Class Reference for E1039 Core & Analysis Software
Fun4AllPrdfOutputManager.cc
Go to the documentation of this file.
2 #include <phool/recoConsts.h>
3 
4 #include <phool/PHNodeIterator.h>
6 #include <phool/PHRawOManager.h>
7 
8 #include <iostream>
9 #include <string>
10 #include <vector>
11 
12 using namespace std;
13 
14 //______________________________________________________
15 Fun4AllPrdfOutputManager::Fun4AllPrdfOutputManager( const string &myname, const string &fname):
16  Fun4AllOutputManager( myname ),
17  prdfNode( 0 ),
18  prdfOut( 0 )
19 {
20  outfilename = fname;
21  return ;
22 }
23 
24 //______________________________________________________
26 {
27  if( prdfOut ) delete prdfOut;
28  return;
29 }
30 
31 //______________________________________________________
32 int Fun4AllPrdfOutputManager::InitPrdfNode( PHCompositeNode* top_node, const string &nodeName )
33 {
34  PHNodeIterator topIter(top_node);
35  prdfNode = dynamic_cast<PHCompositeNode*>(topIter.findFirst("PHCompositeNode", nodeName.c_str()));
36  if ( prdfNode )
37  {
38  // the prdfNode already exists (Pisa Input Mgr creates one also)
39  return 0;
40  }
41 
42  // check name wrt default
43  if ( nodeName != "SIMPRDF" )
44  cout << "Fun4AllPrdfOutputManager::InitPrdfNode - WARNING: nodeName is \"" << nodeName << "\". most systems expect \"SIMPRDF\" and this is most likely not going to work" << endl;
45 
46  // create node
47  prdfNode = new PHCompositeNode( nodeName.c_str() );
48  top_node->addNode(prdfNode);
49  return 0;
50 
51 }
52 
53 //______________________________________________________
54 int Fun4AllPrdfOutputManager::outfileopen(const string &fname)
55 {
56  if( prdfOut ) {
57  if( verbosity ) cout << "Fun4AllPrdfOutputManager::outfileopen - closing file \"" << outfilename << "\"" << endl;
58  delete prdfOut;
59  prdfOut = 0;
60  }
61 
62  outfilename = fname;
63  if( verbosity ) cout << "Fun4AllPrdfOutputManager::outfileopen - writing to file \"" << outfilename << "\"" << endl;
64 
65  return 0;
66 
67 }
68 
69 //______________________________________________________
71 {
72 
73  // check prdfNode
74  if( !prdfNode ) {
75  cout << "Fun4AllPrdfOutputManager::Write - prdfNode not initialized" << endl;
76  return -1;
77  }
78 
79  // check prdfOut
80  if( !prdfOut ) InitPrdfManager();
81  if( !prdfOut ) {
82  cout << "Fun4AllPrdfOutputManager::Write - prdf manager not initialized" << endl;
83  return -1;
84  }
85 
86  // write prdfNode to prdfManager
87  bool prdf_status = prdfOut->write(prdfNode);
88  return prdf_status ? 0:-1;
89 
90 }
91 
92 //______________________________________________________
94 {
95 
96  if( prdfOut ) return -1;
97 
98  // retrieve run number from recoConsts
100 
101  // retrieve run number
102  int run_number = -1;
103  if( rc->FlagExist( "RUNNUMBER") )
104  {
105  run_number = rc->get_IntFlag("RUNNUMBER");
106  }
107  // buffer length (taken from offline/framework/simReco/PrdfReco.C)
108  static const int buffer_length( 8*1024*1024/4 );
109 
110  // create output manager
111  prdfOut = new PHRawOManager( outfilename.c_str() , run_number , buffer_length);
112  return 0;
113 
114 }
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
std::string outfilename
output file name
Fun4AllPrdfOutputManager(const std::string &myname="PRDFOUT", const std::string &filename="data_out.prdf")
constructor
PHCompositeNode * prdfNode
prdf node
int InitPrdfNode(PHCompositeNode *top_node, const std::string &nodeName="SIMPRDF")
PRDF node initialization [class specific method].
virtual ~Fun4AllPrdfOutputManager(void)
destructor
PHRawOManager * prdfOut
output manager
int Write(PHCompositeNode *startNode)
event write method (startNode argument is ignored. prdfNode is always used)
int outfileopen(const std::string &fname)
reinitialize raw output manager to write to new filename. Close old one if any
PHBoolean addNode(PHNode *)
virtual int FlagExist(const std::string &name) const
Definition: PHFlag.cc:255
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
PHNode * findFirst(const std::string &, const std::string &)
static recoConsts * instance()
Definition: recoConsts.cc:7