CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTROS8FileReader.cc
Go to the documentation of this file.
1 
11 
15 
20 
23 
24 #include <string>
25 #include <iosfwd>
26 #include <iostream>
27 #include <algorithm>
28 
29 using namespace std;
30 using namespace edm;
31 
32 
34  runNum(1), eventNum(0) {
35 
36  //const string & filename = pset.getParameter<string>("fileName"); // Don't work, it produces an error saying that the DTNewROS8FileReader plugin doesn't exist!!!
37 
38  const string & filename = pset.getUntrackedParameter<string>("fileName");
39 
40  inputFile.open(filename.c_str());
41  if( inputFile.fail() ) {
42  throw cms::Exception("InputFileMissing")
43  << "DTROS8FileReader: the input file: " << filename <<" is not present";
44  }
45 
46  produces<FEDRawDataCollection>();
47 }
48 
49 
51  inputFile.close();
52 }
53 
54 
56 // Timestamp& tstamp,
58  EventID eID = e.id();
59  data = new FEDRawDataCollection();
60 
61  try {
62 
63 
64  if( checkEndOfFile() ) throw 1;
65 
66 
67  // Get the total number of words from the 1st word in the payload
68  int numberOfWords=0;
69  int nread = 0;
70  nread = inputFile.read(dataPointer<int>( &numberOfWords ), ros8WordLenght);
71  if ( nread<=0 ) throw 1;
72 
73 
74  // Get the event data (all words but the 1st)
75  int* eventData = new int[numberOfWords];
76  nread = inputFile.read(dataPointer<int>( eventData + 1 ), (numberOfWords-1) * ros8WordLenght );
77  if ( nread<=0 ) throw 1;
78 
79 
80  // Check that the event data size corresponds to the 1st word datum
81  if ( eventData[numberOfWords-1] != numberOfWords ) {
82  cout << "[DTROS8FileReader]: word counter mismatch exception: "
83  << numberOfWords << " " << eventData[numberOfWords-1] << endl;
84  throw 99;
85  }
86 
87  // The header added by the local DAQ occupies 8 words, starting from the 2nd
88  int* head = eventData + 1;
89 
90  /*
91  Header word 0: run number
92  Header word 1: spill number
93  Header word 2: event number
94  Header word 3: reserved
95  Header word 4: ROS data offset
96  Header word 5: PU data offset
97  Header word 6: reserved
98  Header word 7: reserved
99  */
100 
101  // WARNING: the event number is reset at a new spill
102  eID = EventID( head[0], 1U, head[1]*head[2]);
103 
104  // The pointer to the ROS payload (the 1st word being the ROS words counter)
105  int* rosData = eventData + head[4];
106 
107  // The ROS payload size
108  int eventDataSize = *rosData * ros8WordLenght;
109  // It has to be a multiple of 8 bytes. if not, adjust the size of the FED payload
110  int adjustment = (eventDataSize/4)%2 == 1 ? 4 : 0;
111 
112  //if ( (eventDataSize/4)%2 ) adjustment = 4;
113 
114 
115  // The FED ID is always the first in the DT range
116  FEDRawData& fedRawData = data->FEDData( FEDNumbering::MINDTFEDID );
117  fedRawData.resize(eventDataSize+adjustment);
118 
119  // I pass only the ROS data to the Event
120  copy(reinterpret_cast<unsigned char*>(rosData),
121  reinterpret_cast<unsigned char*>(rosData) + eventDataSize, fedRawData.data());
122 
123  // needed to get rid of memory leaks (?)
124  delete[] eventData;
125 
126  return true;
127  }
128 
129  catch( int i ) {
130 
131  if ( i == 1 ){
132  cout << "[DTROS8FileReader]: END OF FILE REACHED. "
133  << "No information read for the requested event" << endl;
134  delete data; data=0;
135  return false;
136  }
137  else {
138  cout << "[DTROS8FileReader]: PROBLEM WITH EVENT INFORMATION ON THE FILE. "
139  << "EVENT DATA READING FAILED code= " << i << endl;
140  delete data; data=0;
141  return false;
142  }
143 
144  }
145 
146 }
147 
150  FEDRawDataCollection *fedcoll = 0;
151  fillRawData(e,fedcoll);
152  std::auto_ptr<FEDRawDataCollection> bare_product(fedcoll);
153  e.put(bare_product);
154  }
155 
157 
158  bool retval=false;
159  if ( inputFile.eof() ) retval=true;
160  return retval;
161 
162 }
163 
164 
165 
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
virtual bool checkEndOfFile()
virtual void produce(edm::Event &, edm::EventSetup const &)
virtual int fillRawData(edm::Event &e, FEDRawDataCollection *&data)
Generate and fill FED raw data for a full event.
RawFile * open(const char *path)
Open file.
Definition: RawFile.cc:29
bool fail()
It is not OK.
Definition: RawFile.cc:88
int read(void *data, size_t nbytes)
Read from file.
Definition: RawFile.cc:94
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
int close()
Close file if necessary.
Definition: RawFile.cc:66
void resize(size_t newsize)
Definition: FEDRawData.cc:32
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
virtual ~DTROS8FileReader()
Destructor.
int eof()
Check end of file.
Definition: RawFile.cc:118
static const int ros8WordLenght
edm::EventID id() const
Definition: EventBase.h:59
DTROS8FileReader(const edm::ParameterSet &pset)
Constructor.
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
tuple filename
Definition: lut2db_cfg.py:20
tuple cout
Definition: gather_cfg.py:145
dictionary rawdata
Definition: lumiPlot.py:393