source: trunk/MagicSoft/Mars/mraw/MRawFileRead.cc@ 5307

Last change on this file since 5307 was 5307, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 9.3 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2004
21!
22!
23\* ======================================================================== */
24
25//////////////////////////////////////////////////////////////////////////////
26//
27// MRawFileRead
28//
29// This tasks reads the raw binary file like specified in the TDAS???
30// and writes the data in the corresponding containers which are
31// either retrieved from the parameter list or created and added.
32//
33// Use SetInterleave() if you don't want to read all events, eg
34// SetInterleave(5) reads only each 5th event.
35//
36// Input Containers:
37// -/-
38//
39// Output Containers:
40// MRawRunHeader, MRawEvtHeader, MRawEvtData, MRawCrateArray, MRawEvtTime
41//
42//////////////////////////////////////////////////////////////////////////////
43#include "MRawFileRead.h"
44
45#include <errno.h>
46#include <fstream>
47
48#include <TSystem.h>
49
50#include "MLog.h"
51#include "MLogManip.h"
52
53#include "MTime.h"
54#include "MParList.h"
55
56#include "MRawRunHeader.h"
57#include "MRawEvtHeader.h"
58#include "MRawEvtData.h"
59#include "MRawCrateData.h"
60#include "MRawCrateArray.h"
61
62ClassImp(MRawFileRead);
63
64using namespace std;
65
66/* ----------- please don't delete and don't care about (Thomas) ------------
67#define kBUFSZ 64 //1024*1024*64
68#include <iomanip.h>
69class bifstream : public istream, public streambuf
70{
71private:
72 char fBuffer[kBUFSZ]; //!
73 FILE *fd;
74
75 int sync()
76 {
77 memset(fBuffer, 0, kBUFSZ);
78 return 0;
79 }
80 int underflow()
81 {
82 int sz=fread(fBuffer, kBUFSZ, 1, fd);
83 //int sz=fread(fBuffer, 1, kBUFSZ, fd);
84 setg(fBuffer, fBuffer, fBuffer+kBUFSZ);
85
86 return sz==1 ? *(unsigned char*)fBuffer : EOF;//EOF;
87 //return sz==kBUFSZ ? *(unsigned char*)fBuffer : EOF;//EOF;
88 }
89public:
90 bifstream(const char *name) : istream(this)
91 {
92 fd = fopen(name, "rb");
93 setbuf(fBuffer, kBUFSZ);
94 }
95};
96*/
97
98// --------------------------------------------------------------------------
99//
100// Default constructor. It tries to open the given file.
101//
102MRawFileRead::MRawFileRead(const char *fname, const char *name, const char *title)
103 : fFileNames(NULL), fNumFile(0), fIn(NULL), fParList(NULL), fInterleave(1)
104{
105 fName = name ? name : "MRead";
106 fTitle = title ? title : "Read task to read DAQ binary files";
107
108 fFileNames = new TList;
109 fFileNames->SetOwner();
110
111 if (fname!=NULL)
112 AddFile(fname);
113}
114
115// --------------------------------------------------------------------------
116//
117// Destructor. Delete input stream.
118//
119MRawFileRead::~MRawFileRead()
120{
121 delete fFileNames;
122 if (fIn)
123 delete fIn;
124}
125
126Byte_t MRawFileRead::IsFileValid(const char *name)
127{
128 ifstream fin(name);
129 if (!fin)
130 return 0;
131
132 Byte_t c[4];
133 fin.read((char*)c, 4);
134 if (!fin)
135 return 0;
136
137 if (c[0]!=0xc0)
138 return 0;
139
140 if (c[1]==0xc0)
141 return 1;
142
143 if (c[1]==0xc1)
144 return 2;
145
146 return 0;
147}
148
149// --------------------------------------------------------------------------
150//
151// Add a new file to a list of files to be processed, Returns the number
152// of files added. (We can enhance this with a existance chack and
153// wildcard support)
154//
155Int_t MRawFileRead::AddFile(const char *fname, Int_t entries)
156{
157 TNamed *name = new TNamed(fname, "");
158 fFileNames->AddLast(name);
159 return 1;
160
161}
162
163// --------------------------------------------------------------------------
164//
165// This opens the next file in the list and deletes its name from the list.
166//
167Bool_t MRawFileRead::OpenNextFile()
168{
169 //
170 // open the input stream and check if it is really open (file exists?)
171 //
172 if (fIn)
173 delete fIn;
174 fIn = NULL;
175
176 //
177 // Check for the existance of a next file to read
178 //
179 TObject *file = fFileNames->At(fNumFile);
180 if (!file)
181 return kFALSE;
182
183 //
184 // open the file which is the first one in the chain
185 //
186 const char *name = file->GetName();
187
188 const char *expname = gSystem->ExpandPathName(name);
189 fIn = new ifstream(expname);
190
191 const Bool_t noexist = !(*fIn);
192 if (noexist)
193 {
194 *fLog << err << "Cannot open file " << expname << ": ";
195 *fLog << strerror(errno) << endl;
196 }
197 else
198 *fLog << inf << "Open file: '" << name << "'" << endl;
199
200 delete [] expname;
201
202 if (noexist)
203 return kFALSE;
204
205 fNumFile++;
206
207 //
208 // Read RUN HEADER (see specification) from input stream
209 //
210 if (!fRawRunHeader->ReadEvt(*fIn))
211 return kFALSE;
212
213 if (!(*fIn))
214 {
215 *fLog << err << "Error: Accessing file '" << name << "'" << endl;
216 return kFALSE;
217 }
218
219 //
220 // Print Run Header
221 //
222 fRawRunHeader->Print();
223 *fRawEvtTime = fRawRunHeader->GetRunStart();
224
225 fNumEvents += fRawRunHeader->GetNumEvents();
226
227 fRawRunHeader->SetReadyToSave();
228
229 //
230 // Give the run header information to the 'sub-classes'
231 // Run header must be valid!
232 //
233 fRawEvtHeader->InitRead(fRawRunHeader, fRawEvtTime);
234 fRawEvtData1 ->InitRead(fRawRunHeader);
235 fRawEvtData2 ->InitRead(fRawRunHeader);
236
237 //
238 // Search for MTaskList
239 //
240 MTask *tlist = (MTask*)fParList->FindObject("MTaskList");
241 if (!tlist)
242 {
243 *fLog << err << dbginf << "MTaskList not found... abort." << endl;
244 return kFALSE;
245 }
246
247 //
248 // A new file has been opened and new headers have been read.
249 // --> ReInit tasklist
250 //
251 return tlist->ReInit(fParList);
252}
253
254// --------------------------------------------------------------------------
255//
256// Return file name of current file.
257//
258TString MRawFileRead::GetFileName() const
259{
260 const TObject *file = fFileNames->At(fNumFile-1);
261 return file ? file->GetName() : "";
262}
263
264// --------------------------------------------------------------------------
265//
266// Restart with the first file
267//
268Bool_t MRawFileRead::Rewind()
269{
270 fNumFile=0;
271 fNumEvents=0;
272 return OpenNextFile();
273}
274
275// --------------------------------------------------------------------------
276//
277// The PreProcess of this task checks for the following containers in the
278// list:
279// MRawRunHeader <output> if not found it is created
280// MRawEvtHeader <output> if not found it is created
281// MRawEvtData <output> if not found it is created
282// MRawCrateArray <output> if not found it is created
283// MRawEvtTime <output> if not found it is created (MTime)
284//
285// If all containers are found or created the run header is read from the
286// binary file and printed. If the Magic-Number (file identification)
287// doesn't match we stop the eventloop.
288//
289// Now the EvtHeader and EvtData containers are initialized.
290//
291Int_t MRawFileRead::PreProcess(MParList *pList)
292{
293 fParList = pList;
294
295 //
296 // open the input stream
297 // first of all check if opening the file in the constructor was
298 // successfull
299 //
300 if (!MRawRead::PreProcess(pList))
301 return kFALSE;
302
303 //
304 // Now open next (first) file
305 //
306// if (!Rewind())
307// return kFALSE;
308
309
310 fNumFile=0;
311 fNumEvents=0;
312
313 return kTRUE;
314}
315
316// --------------------------------------------------------------------------
317//
318// The Process reads one event from the binary file:
319// - The event header is read
320// - the run header is read
321// - all crate information is read
322// - the raw data information of one event is read
323//
324Int_t MRawFileRead::Process()
325{
326 while (1)
327 {
328 if (fIn)
329 {
330 //
331 // skip events if requested
332 //
333 if (fInterleave>1 && GetNumExecutions()%fInterleave>0 && fIn->peek()!=EOF)
334 {
335 SkipEvent(*fIn);
336 return kCONTINUE;
337 }
338
339 //
340 // Read a single event from file
341 //
342 const Bool_t rc = ReadEvent(*fIn);
343 if (rc!=kFALSE)
344 return rc;
345 }
346
347 //
348 // If an event could not be read from file try to open new file
349 //
350 if (!OpenNextFile())
351 return kFALSE;
352 }
353 return kTRUE;
354}
355
356// --------------------------------------------------------------------------
357//
358// Close the file. Check whether the number of read events differs from
359// the number the file should containe (MRawRunHeader). Prints a warning
360// if it doesn't match.
361//
362Int_t MRawFileRead::PostProcess()
363{
364 //
365 // Sanity check for the number of events
366 //
367 if (fNumEvents==GetNumExecutions()-1 || GetNumExecutions()==0)
368 return kTRUE;
369
370 *fLog << warn << dec;
371 *fLog << "Warning - number of read events (" << GetNumExecutions()-1;
372 *fLog << ") doesn't match number in run header(s) (";
373 *fLog << fNumEvents << ")." << endl;
374
375 return kTRUE;
376}
Note: See TracBrowser for help on using the repository browser.