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 11/2008 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | Reiner Rohlfs 11/2010 <mailto:Reiner.Rohlfs@unige.ch>
|
---|
20 | !
|
---|
21 | ! Copyright: Software Development, 2000-2008
|
---|
22 | !
|
---|
23 | !
|
---|
24 | \* ======================================================================== */
|
---|
25 |
|
---|
26 | //////////////////////////////////////////////////////////////////////////////
|
---|
27 | //
|
---|
28 | // MCorsikaRead
|
---|
29 | //
|
---|
30 | // Input Containers:
|
---|
31 | // -/-
|
---|
32 | //
|
---|
33 | // Output Containers:
|
---|
34 | // MCorsikaRunHeader
|
---|
35 | // MCorsikaEvtHeader
|
---|
36 | // MPhotonEvent
|
---|
37 | //
|
---|
38 | //////////////////////////////////////////////////////////////////////////////
|
---|
39 | #include "MCorsikaRead.h"
|
---|
40 |
|
---|
41 | #include <errno.h>
|
---|
42 | #include <fstream>
|
---|
43 |
|
---|
44 | #include <TSystem.h>
|
---|
45 |
|
---|
46 | #include "MLog.h"
|
---|
47 | #include "MLogManip.h"
|
---|
48 |
|
---|
49 | #include "MParList.h"
|
---|
50 | #include "MStatusDisplay.h"
|
---|
51 |
|
---|
52 | #include "MCorsikaFormat.h"
|
---|
53 | #include "MCorsikaRunHeader.h"
|
---|
54 | #include "MCorsikaEvtHeader.h"
|
---|
55 |
|
---|
56 | #include "MPhotonEvent.h"
|
---|
57 |
|
---|
58 | ClassImp(MCorsikaRead);
|
---|
59 |
|
---|
60 | using namespace std;
|
---|
61 |
|
---|
62 |
|
---|
63 | /* ----------- please don't delete and don't care about (Thomas) ------------
|
---|
64 | #define kBUFSZ 64 //1024*1024*64
|
---|
65 | #include <iomanip.h>
|
---|
66 | class bifstream : public istream, public streambuf
|
---|
67 | {
|
---|
68 | private:
|
---|
69 | char fBuffer[kBUFSZ]; //!
|
---|
70 | FILE *fd;
|
---|
71 |
|
---|
72 | int sync()
|
---|
73 | {
|
---|
74 | memset(fBuffer, 0, kBUFSZ);
|
---|
75 | return 0;
|
---|
76 | }
|
---|
77 | int underflow()
|
---|
78 | {
|
---|
79 | int sz=fread(fBuffer, kBUFSZ, 1, fd);
|
---|
80 | //int sz=fread(fBuffer, 1, kBUFSZ, fd);
|
---|
81 | setg(fBuffer, fBuffer, fBuffer+kBUFSZ);
|
---|
82 |
|
---|
83 | return sz==1 ? *(unsigned char*)fBuffer : EOF;//EOF;
|
---|
84 | //return sz==kBUFSZ ? *(unsigned char*)fBuffer : EOF;//EOF;
|
---|
85 | }
|
---|
86 | public:
|
---|
87 | bifstream(const char *name) : istream(this)
|
---|
88 | {
|
---|
89 | fd = fopen(name, "rb");
|
---|
90 | setbuf(fBuffer, kBUFSZ);
|
---|
91 | }
|
---|
92 | };
|
---|
93 | */
|
---|
94 |
|
---|
95 | // --------------------------------------------------------------------------
|
---|
96 | //
|
---|
97 | // Default constructor. It tries to open the given file.
|
---|
98 | //
|
---|
99 | MCorsikaRead::MCorsikaRead(const char *fname, const char *name, const char *title)
|
---|
100 | : fRunHeader(0), fEvtHeader(0), fEvent(0), fTelescopeIdx(-1), fArrayIdx(-1),
|
---|
101 | fForceMode(kFALSE), fFileNames(0), fNumFile(0), fNumEvents(0),
|
---|
102 | fNumTotalEvents(0), fInFormat(0), fParList(0), fNumTelescopes(1), fReadState(0)
|
---|
103 | {
|
---|
104 | fName = name ? name : "MRead";
|
---|
105 | fTitle = title ? title : "Read task to read DAQ binary files";
|
---|
106 |
|
---|
107 | fFileNames = new TList;
|
---|
108 | fFileNames->SetOwner();
|
---|
109 |
|
---|
110 | if (fname!=NULL)
|
---|
111 | AddFile(fname);
|
---|
112 | }
|
---|
113 |
|
---|
114 | // --------------------------------------------------------------------------
|
---|
115 | //
|
---|
116 | // Destructor. Delete input stream.
|
---|
117 | //
|
---|
118 | MCorsikaRead::~MCorsikaRead()
|
---|
119 | {
|
---|
120 | delete fFileNames;
|
---|
121 | if (fInFormat)
|
---|
122 | delete fInFormat;
|
---|
123 | }
|
---|
124 |
|
---|
125 | /*
|
---|
126 | Byte_t MCorsikaRead::IsFileValid(const char *name)
|
---|
127 | {
|
---|
128 | MZlib 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 | //
|
---|
152 | // Add a new file to a list of files to be processed, Returns the number
|
---|
153 | // of files added. (We can enhance this with a existance chack and
|
---|
154 | // wildcard support)
|
---|
155 | //
|
---|
156 | Int_t MCorsikaRead::AddFile(const char *fname, Int_t entries)
|
---|
157 | {
|
---|
158 | TNamed *name = new TNamed(fname, "");
|
---|
159 | fFileNames->AddLast(name);
|
---|
160 | return 1;
|
---|
161 |
|
---|
162 | }
|
---|
163 | // --------------------------------------------------------------------------
|
---|
164 | //
|
---|
165 | // This opens the next file in the list and deletes its name from the list.
|
---|
166 | //
|
---|
167 | Int_t MCorsikaRead::OpenNextFile(Bool_t print)
|
---|
168 | {
|
---|
169 |
|
---|
170 | //
|
---|
171 | // open the input stream and check if it is really open (file exists?)
|
---|
172 | //
|
---|
173 | if (fInFormat)
|
---|
174 | delete fInFormat;
|
---|
175 | fInFormat = NULL;
|
---|
176 |
|
---|
177 | //
|
---|
178 | // Check for the existance of a next file to read
|
---|
179 | //
|
---|
180 | TObject *file = fFileNames->At(fNumFile);
|
---|
181 | if (!file)
|
---|
182 | return kFALSE;
|
---|
183 |
|
---|
184 | //
|
---|
185 | // open the file which is the first one in the chain
|
---|
186 | //
|
---|
187 | const char *name = file->GetName();
|
---|
188 |
|
---|
189 | const char *expname = gSystem->ExpandPathName(name);
|
---|
190 | fInFormat = MCorsikaFormat::CorsikaFormatFactory(expname);
|
---|
191 | delete [] expname;
|
---|
192 |
|
---|
193 | if (fInFormat == NULL)
|
---|
194 | return kERROR;
|
---|
195 |
|
---|
196 | *fLog << inf << "Open file: '" << name << "'" << endl;
|
---|
197 |
|
---|
198 | if (fDisplay)
|
---|
199 | {
|
---|
200 | // Show the number of the last event after
|
---|
201 | // which we now open a new file
|
---|
202 | TString txt = GetFileName();
|
---|
203 | txt += " @ ";
|
---|
204 | txt += GetNumExecutions()-1;
|
---|
205 | fDisplay->SetStatusLine2(txt);
|
---|
206 | }
|
---|
207 |
|
---|
208 | fNumFile++;
|
---|
209 |
|
---|
210 | if (!fParList)
|
---|
211 | return kTRUE;
|
---|
212 |
|
---|
213 | //
|
---|
214 | // Search for MTaskList
|
---|
215 | //
|
---|
216 | MTask *tlist = (MTask*)fParList->FindObject("MTaskList");
|
---|
217 | if (!tlist)
|
---|
218 | {
|
---|
219 | *fLog << err << dbginf << "MTaskList not found... abort." << endl;
|
---|
220 | return kERROR;
|
---|
221 | }
|
---|
222 |
|
---|
223 | //
|
---|
224 | // A new file has been opened and new headers have been read.
|
---|
225 | // --> ReInit tasklist
|
---|
226 | //
|
---|
227 | return tlist->ReInit(fParList) ? kTRUE : kERROR;
|
---|
228 | }
|
---|
229 |
|
---|
230 | // --------------------------------------------------------------------------
|
---|
231 | //
|
---|
232 | // Return file name of current file.
|
---|
233 | //
|
---|
234 | TString MCorsikaRead::GetFullFileName() const
|
---|
235 | {
|
---|
236 | const TObject *file = fFileNames->At(fNumFile-1);
|
---|
237 | return file ? file->GetName() : "";
|
---|
238 | }
|
---|
239 |
|
---|
240 | // --------------------------------------------------------------------------
|
---|
241 | //
|
---|
242 | // Restart with the first file
|
---|
243 | //
|
---|
244 | Bool_t MCorsikaRead::Rewind()
|
---|
245 | {
|
---|
246 | fNumFile=0;
|
---|
247 | fNumEvents=0;
|
---|
248 | return OpenNextFile()==kTRUE;
|
---|
249 | }
|
---|
250 |
|
---|
251 | // --------------------------------------------------------------------------
|
---|
252 | //
|
---|
253 | // Calculates the total number of events from all input files and stores
|
---|
254 | // the number in fNumTotalEvents.
|
---|
255 | //
|
---|
256 | Bool_t MCorsikaRead::CalcNumTotalEvents()
|
---|
257 | {
|
---|
258 | fNumTotalEvents = 0;
|
---|
259 |
|
---|
260 | Bool_t rc = kTRUE;
|
---|
261 |
|
---|
262 | while (1)
|
---|
263 | {
|
---|
264 | switch (OpenNextFile(kFALSE))
|
---|
265 | {
|
---|
266 | case kFALSE:
|
---|
267 | break;
|
---|
268 | case kERROR:
|
---|
269 | rc = kFALSE;
|
---|
270 | break;
|
---|
271 | case kTRUE:
|
---|
272 |
|
---|
273 | // read run header(1200), telescope position(1201) and
|
---|
274 | // first event header(1202)
|
---|
275 | Bool_t status = kTRUE;
|
---|
276 | Int_t blockType, blockVersion, blockIdentifier, blockLength;
|
---|
277 | while (status &&
|
---|
278 | fInFormat->NextBlock(fReadState/* == 4*/, blockType, blockVersion,
|
---|
279 | blockIdentifier, blockLength))
|
---|
280 | {
|
---|
281 | if (blockType == 1200)
|
---|
282 | status = fRunHeader->ReadEvt(fInFormat);
|
---|
283 |
|
---|
284 | else if(blockType == 1201)
|
---|
285 | status = ReadTelescopePosition();
|
---|
286 |
|
---|
287 | else if (blockType == 1202)
|
---|
288 | {
|
---|
289 | Float_t buffer[272];
|
---|
290 | status = fInFormat->Read(buffer, 272 * sizeof(Float_t));
|
---|
291 | status = fRunHeader->ReadEventHeader(buffer);
|
---|
292 | break;
|
---|
293 | }
|
---|
294 | else
|
---|
295 | fInFormat->Seek(blockLength);
|
---|
296 | }
|
---|
297 |
|
---|
298 | if (status != kTRUE)
|
---|
299 | return status;
|
---|
300 |
|
---|
301 | if (!fInFormat->SeekEvtEnd())
|
---|
302 | {
|
---|
303 | *fLog << (fForceMode?warn:err) << "Error: RUNE section not found in file." << endl;
|
---|
304 | if (!fForceMode)
|
---|
305 | return fForceMode ? kTRUE : kFALSE;
|
---|
306 | }
|
---|
307 |
|
---|
308 | if (!fRunHeader->ReadEvtEnd(fInFormat, kTRUE))
|
---|
309 | {
|
---|
310 | *fLog << (fForceMode?warn:err) << "Error: Reading RUNE section failed." << endl;
|
---|
311 | if (!fForceMode)
|
---|
312 | return kFALSE;
|
---|
313 | }
|
---|
314 |
|
---|
315 | fNumTotalEvents += fRunHeader->GetNumEvents()*fRunHeader->GetNumReuse()*
|
---|
316 | (fTelescopeIdx<0 ? fNumTelescopes : 1);
|
---|
317 | continue;
|
---|
318 | }
|
---|
319 | break;
|
---|
320 | }
|
---|
321 |
|
---|
322 | return rc;
|
---|
323 | }
|
---|
324 |
|
---|
325 | // --------------------------------------------------------------------------
|
---|
326 | //
|
---|
327 | // Reads the the position of all telescopes in one array
|
---|
328 | //
|
---|
329 | Int_t MCorsikaRead::ReadTelescopePosition()
|
---|
330 | {
|
---|
331 | if (!fInFormat->Read(&fNumTelescopes, 4)) return kERROR;
|
---|
332 |
|
---|
333 | if (fTelescopeIdx>=fNumTelescopes)
|
---|
334 | {
|
---|
335 | *fLog << err << "ERROR - Requested telescope index " << fTelescopeIdx <<
|
---|
336 | " exceeds number of telescopes " << fNumTelescopes << " in file." << endl;
|
---|
337 | return kERROR;
|
---|
338 | }
|
---|
339 |
|
---|
340 | fTelescopeX.Set(fNumTelescopes);
|
---|
341 | fTelescopeY.Set(fNumTelescopes);
|
---|
342 | fTelescopeZ.Set(fNumTelescopes);
|
---|
343 | fTelescopeR.Set(fNumTelescopes);
|
---|
344 |
|
---|
345 | if (!fInFormat->Read(fTelescopeX.GetArray(), 4*fNumTelescopes)) return kERROR;
|
---|
346 | if (!fInFormat->Read(fTelescopeY.GetArray(), 4*fNumTelescopes)) return kERROR;
|
---|
347 | if (!fInFormat->Read(fTelescopeZ.GetArray(), 4*fNumTelescopes)) return kERROR;
|
---|
348 | if (!fInFormat->Read(fTelescopeR.GetArray(), 4*fNumTelescopes)) return kERROR;
|
---|
349 |
|
---|
350 | *fLog << all;
|
---|
351 | *fLog << "Number of telescopes: " << fNumTelescopes << " (using ";
|
---|
352 | if (fTelescopeIdx>=0)
|
---|
353 | *fLog << "telescope " << fTelescopeIdx;
|
---|
354 | else
|
---|
355 | *fLog << "all telescopes";
|
---|
356 | *fLog << ")" << endl;
|
---|
357 |
|
---|
358 | const Int_t lo = fTelescopeIdx<0 ? 0 : fTelescopeIdx;
|
---|
359 | const Int_t up = fTelescopeIdx<0 ? fNumTelescopes : fTelescopeIdx+1;
|
---|
360 |
|
---|
361 | for (int i=lo; i<up; i++)
|
---|
362 | {
|
---|
363 | *fLog << all << "Telescope #" << setw(4) << i << " [X/Y/Z (R)]: ";
|
---|
364 | *fLog << setw(7) << fTelescopeX[i] << "/";
|
---|
365 | *fLog << setw(7) << fTelescopeY[i] << "/";
|
---|
366 | *fLog << setw(7) << fTelescopeZ[i] << " (R=" << setw(4) << fTelescopeR[i] << ")" << endl;
|
---|
367 | }
|
---|
368 |
|
---|
369 | fNumTelescope = 0;
|
---|
370 |
|
---|
371 | return kTRUE;
|
---|
372 | }
|
---|
373 |
|
---|
374 | // --------------------------------------------------------------------------
|
---|
375 | //
|
---|
376 | // Reads the header of the next block. Depending on the current fReadState
|
---|
377 | // and the block-type of the new header the methods decides wether
|
---|
378 | // to continue the reading (kCONTINEU), to exit the Process() method (kTRUE)
|
---|
379 | // or to try to read a new file (kFALSE).
|
---|
380 | // Return codes:
|
---|
381 | // - kFALSE : end of file was detected and no new header was read
|
---|
382 | // - kTRU: A EventEnd was already found (fReadStatus == 3) and
|
---|
383 | // the current header is not the RunEnd
|
---|
384 | // - kCONTINUE: all other cases.
|
---|
385 | Int_t MCorsikaRead::ReadNextBlockHeader()
|
---|
386 | {
|
---|
387 | if (fInFormat->NextBlock(fReadState/* == 4*/, fBlockType, fBlockVersion,
|
---|
388 | fBlockIdentifier, fBlockLength) == kFALSE)
|
---|
389 | // end of file
|
---|
390 | return kFALSE;
|
---|
391 | /*
|
---|
392 | gLog << "Next fBlock: type=" << fBlockType << " version=" << fBlockVersion;
|
---|
393 | gLog << " identifier=" << fBlockIdentifier << " length=" << fBlockLength;
|
---|
394 | gLog << " readState= " << fReadState << endl;
|
---|
395 | */
|
---|
396 | if (fReadState == 3 && fBlockType != 1210)
|
---|
397 | // fReadState == 3 means we have read the event end
|
---|
398 | // most of the time we can now save our data. BUT:
|
---|
399 | // bBlockType != 1210 means the next block is not RUNE,
|
---|
400 | // we want to read the RUNE block, before we
|
---|
401 | // save everything (last events and RUNE)
|
---|
402 | return kTRUE;
|
---|
403 |
|
---|
404 | if (fBlockType == 1204 && fReadState != 2)
|
---|
405 | // next is a new set of telescope arrays, we store the previous ones
|
---|
406 | // but not if this is the first one (fReadState != 2)
|
---|
407 | return kTRUE;
|
---|
408 |
|
---|
409 | return kCONTINUE;
|
---|
410 |
|
---|
411 | }
|
---|
412 |
|
---|
413 | // --------------------------------------------------------------------------
|
---|
414 | //
|
---|
415 | // The PreProcess of this task checks for the following containers in the
|
---|
416 | // list:
|
---|
417 | // MCorsikaRunHeader <output> if not found it is created
|
---|
418 | // MCorsikaEvtHeader <output> if not found it is created
|
---|
419 | // MCorsikaEvtData <output> if not found it is created
|
---|
420 | // MCorsikaCrateArray <output> if not found it is created
|
---|
421 | // MCorsikaEvtTime <output> if not found it is created (MTime)
|
---|
422 | //
|
---|
423 | // If all containers are found or created the run header is read from the
|
---|
424 | // binary file and printed. If the Magic-Number (file identification)
|
---|
425 | // doesn't match we stop the eventloop.
|
---|
426 | //
|
---|
427 | // Now the EvtHeader and EvtData containers are initialized.
|
---|
428 | //
|
---|
429 | Int_t MCorsikaRead::PreProcess(MParList *pList)
|
---|
430 | {
|
---|
431 | //
|
---|
432 | // open the input stream
|
---|
433 | // first of all check if opening the file in the constructor was
|
---|
434 | // successfull
|
---|
435 | //
|
---|
436 | fParList = 0;
|
---|
437 |
|
---|
438 | //
|
---|
439 | // check if all necessary containers exist in the Parameter list.
|
---|
440 | // if not create one and add them to the list
|
---|
441 | //
|
---|
442 | fRunHeader = (MCorsikaRunHeader*)pList->FindCreateObj("MCorsikaRunHeader");
|
---|
443 | if (!fRunHeader)
|
---|
444 | return kFALSE;
|
---|
445 |
|
---|
446 | fEvtHeader = (MCorsikaEvtHeader*)pList->FindCreateObj("MCorsikaEvtHeader");
|
---|
447 | if (!fEvtHeader)
|
---|
448 | return kFALSE;
|
---|
449 |
|
---|
450 | fEvent = (MPhotonEvent*)pList->FindCreateObj("MPhotonEvent");
|
---|
451 | if (!fEvent)
|
---|
452 | return kFALSE;
|
---|
453 |
|
---|
454 | *fLog << inf << "Calculating number of total events..." << flush;
|
---|
455 | if (!CalcNumTotalEvents())
|
---|
456 | return kFALSE;
|
---|
457 | *fLog << inf << " " << fNumTotalEvents << " found." << endl;
|
---|
458 |
|
---|
459 | fNumFile=0;
|
---|
460 | fNumEvents=0;
|
---|
461 |
|
---|
462 | fParList = pList;
|
---|
463 |
|
---|
464 | return kTRUE;
|
---|
465 | }
|
---|
466 |
|
---|
467 | // --------------------------------------------------------------------------
|
---|
468 | //
|
---|
469 | // The Process reads one event from the binary file:
|
---|
470 | // - The event header is read
|
---|
471 | // - the run header is read (only once per file)
|
---|
472 | // - the raw data information of one event is read
|
---|
473 | //
|
---|
474 | Int_t MCorsikaRead::Process()
|
---|
475 | {
|
---|
476 | while (1) // loop for multiple input files
|
---|
477 | {
|
---|
478 | if (fInFormat)
|
---|
479 | {
|
---|
480 |
|
---|
481 | while (1) // loop per input block
|
---|
482 | {
|
---|
483 |
|
---|
484 | if (fReadState == 4)
|
---|
485 | {
|
---|
486 | fTopBlockLength -= fBlockLength + 12;
|
---|
487 | if (fTopBlockLength <= 0)
|
---|
488 | // all data of a top block are read, go back to normal state
|
---|
489 | fReadState = 15; // not used
|
---|
490 | }
|
---|
491 |
|
---|
492 |
|
---|
493 | Int_t status = kTRUE;
|
---|
494 | switch (fBlockType)
|
---|
495 | {
|
---|
496 | case 1200: // the run header
|
---|
497 | status = fRunHeader->ReadEvt(fInFormat);
|
---|
498 | fReadState = 1; // RUNH is read
|
---|
499 | break;
|
---|
500 |
|
---|
501 | case 1201: // telescope positions
|
---|
502 | status = ReadTelescopePosition();
|
---|
503 | break;
|
---|
504 |
|
---|
505 | case 1202: // the event header
|
---|
506 | Float_t buffer[272];
|
---|
507 | if (!fInFormat->Read(buffer, 272 * sizeof(Float_t)))
|
---|
508 | return kFALSE;
|
---|
509 |
|
---|
510 | if (fReadState == 1) // first event after RUN header
|
---|
511 | {
|
---|
512 | fRunHeader->ReadEventHeader(buffer);
|
---|
513 | fRunHeader->Print();
|
---|
514 | }
|
---|
515 |
|
---|
516 | status = fEvtHeader->ReadEvt(buffer);
|
---|
517 | if (fArrayIdx >= (Int_t)fEvtHeader->GetTotReuse())
|
---|
518 | {
|
---|
519 | *fLog << err << "ERROR - Requested array index " << fArrayIdx <<
|
---|
520 | " exceeds number of arrays " << fEvtHeader->GetTotReuse() <<
|
---|
521 | " in file." << endl;
|
---|
522 | return kERROR;
|
---|
523 | }
|
---|
524 |
|
---|
525 | fReadState = 2;
|
---|
526 | break;
|
---|
527 |
|
---|
528 | case 1203: // 16 bytes
|
---|
529 | fInFormat->Seek(fBlockLength);
|
---|
530 | break;
|
---|
531 |
|
---|
532 | case 1212:
|
---|
533 | {
|
---|
534 | char *buf = new char[fBlockLength];
|
---|
535 | fInFormat->Read(buf, fBlockLength);
|
---|
536 | status = kTRUE;
|
---|
537 |
|
---|
538 | char *ptr = buf;
|
---|
539 |
|
---|
540 | unsigned int n = ((int*)ptr)[0];
|
---|
541 | ptr += 4;
|
---|
542 |
|
---|
543 | *fLog << all << endl;
|
---|
544 |
|
---|
545 | for (unsigned int i=0; i<n && ptr<buf+fBlockLength; i++)
|
---|
546 | {
|
---|
547 | unsigned short s = ((unsigned short*)ptr)[0];
|
---|
548 | ptr += 2;
|
---|
549 |
|
---|
550 | *fLog << string(ptr, ptr+s) << '\n';
|
---|
551 | ptr += s;
|
---|
552 | }
|
---|
553 | *fLog << '\n' << endl;
|
---|
554 |
|
---|
555 | delete [] buf;
|
---|
556 | }
|
---|
557 | break;
|
---|
558 |
|
---|
559 |
|
---|
560 | case 1204: // top level block for one array (only for eventio data)
|
---|
561 | if (fArrayIdx < 0 || fArrayIdx == fBlockIdentifier)
|
---|
562 | {
|
---|
563 | fReadState = 4;
|
---|
564 | fTopBlockLength = fBlockLength;
|
---|
565 | }
|
---|
566 | else
|
---|
567 | // skip this array of telescopes
|
---|
568 | fInFormat->Seek(fBlockLength);
|
---|
569 |
|
---|
570 | break;
|
---|
571 |
|
---|
572 |
|
---|
573 | case 1205: // eventio data
|
---|
574 | {
|
---|
575 | Int_t telIdx = fBlockIdentifier % 1000;
|
---|
576 | if ((fBlockVersion == 0 || fBlockVersion == 1000) &&
|
---|
577 | (fTelescopeIdx < 0 || fTelescopeIdx == telIdx) )
|
---|
578 | {
|
---|
579 | status = fBlockVersion==0 ? fEvent->ReadEventIoEvt(fInFormat) : fEvent->ReadEventIoEvtCompact(fInFormat);
|
---|
580 |
|
---|
581 | Int_t arrayIdx = fBlockIdentifier / 1000;
|
---|
582 | Float_t xArrOff, yArrOff;
|
---|
583 | fEvtHeader->GetArrayOffset(arrayIdx, xArrOff, yArrOff);
|
---|
584 | fEvtHeader->SetTelescopeOffset(arrayIdx,
|
---|
585 | xArrOff + fTelescopeY[telIdx],
|
---|
586 | yArrOff - fTelescopeX[telIdx] );
|
---|
587 | fEvent->AddXY(xArrOff + fTelescopeY[telIdx],
|
---|
588 | yArrOff - fTelescopeX[telIdx]);
|
---|
589 | fEvent->SimWavelength(fRunHeader->GetWavelengthMin(),
|
---|
590 | fRunHeader->GetWavelengthMax());
|
---|
591 | }
|
---|
592 | else
|
---|
593 | // skip this telescope
|
---|
594 | fInFormat->Seek(fBlockLength);
|
---|
595 | }
|
---|
596 | break;
|
---|
597 |
|
---|
598 | case 1209: // the event end
|
---|
599 | status = fEvtHeader->ReadEvtEnd(fInFormat);
|
---|
600 |
|
---|
601 | if (fReadState == 10 || fReadState == 2)
|
---|
602 | {
|
---|
603 | // corsika events
|
---|
604 | fEvtHeader->ResetNumReuse();
|
---|
605 | fEvtHeader->InitXY();
|
---|
606 | fBlockType = 1109; // save corsika events
|
---|
607 | continue;
|
---|
608 | }
|
---|
609 |
|
---|
610 | fReadState = 3; // event closed, run still open
|
---|
611 | break;
|
---|
612 |
|
---|
613 |
|
---|
614 | case 1210: // the run end
|
---|
615 | status = fRunHeader->ReadEvtEnd(fInFormat, kTRUE);
|
---|
616 | fNumEvents += fRunHeader->GetNumEvents();
|
---|
617 | //fRunHeader->SetReadyToSave();
|
---|
618 | fReadState = 5; // back to starting point
|
---|
619 | // this may be the last block in the file.
|
---|
620 | // We exit to write the header into the file
|
---|
621 | fBlockLength = 0;
|
---|
622 | fBlockType = 0; // not available type
|
---|
623 | return kTRUE;
|
---|
624 | break;
|
---|
625 |
|
---|
626 |
|
---|
627 | case 1105: // event block of raw format
|
---|
628 | if (fReadState == 2 || fReadState == 10)
|
---|
629 | {
|
---|
630 | Int_t oldSize = fRawEvemtBuffer.size();
|
---|
631 | fRawEvemtBuffer.resize(oldSize + fBlockLength / sizeof(Float_t));
|
---|
632 | status = fInFormat->Read(&fRawEvemtBuffer[oldSize], fBlockLength);
|
---|
633 | fReadState = 10;
|
---|
634 | }
|
---|
635 | else
|
---|
636 | fInFormat->Seek(fBlockLength);
|
---|
637 | break;
|
---|
638 |
|
---|
639 |
|
---|
640 | case 1109: // save corsika events
|
---|
641 | fEvtHeader->InitXY();
|
---|
642 | status = fEvent->ReadCorsikaEvt(&fRawEvemtBuffer[0],
|
---|
643 | fRawEvemtBuffer.size() / 7,
|
---|
644 | fEvtHeader->GetNumReuse()+1);
|
---|
645 | fEvtHeader->IncNumReuse();
|
---|
646 |
|
---|
647 | if (fEvtHeader->GetNumReuse() == fRunHeader->GetNumReuse())
|
---|
648 | {
|
---|
649 | // this was the last reuse. Set fBlockType to EVTE to save
|
---|
650 | // it the next time.
|
---|
651 | fRawEvemtBuffer.resize(0);
|
---|
652 |
|
---|
653 | fReadState = 3;
|
---|
654 | fBlockType = 1209;
|
---|
655 | }
|
---|
656 | else
|
---|
657 | // save this reuse
|
---|
658 | return status;
|
---|
659 |
|
---|
660 | break;
|
---|
661 |
|
---|
662 | default:
|
---|
663 | // unknown block, we skip it
|
---|
664 | fReadState = 15;
|
---|
665 | fInFormat->Seek(fBlockLength);
|
---|
666 |
|
---|
667 | }
|
---|
668 |
|
---|
669 | if (status != kTRUE)
|
---|
670 | // there was an error while data were read
|
---|
671 | return status;
|
---|
672 |
|
---|
673 | Int_t headerStatus = ReadNextBlockHeader();
|
---|
674 | if (headerStatus == kFALSE)
|
---|
675 | // end of file
|
---|
676 | break;
|
---|
677 | if (headerStatus == kTRUE)
|
---|
678 | // we shall quit this loop
|
---|
679 | return kTRUE;
|
---|
680 |
|
---|
681 | // else continue
|
---|
682 | }
|
---|
683 |
|
---|
684 | }
|
---|
685 |
|
---|
686 | //
|
---|
687 | // If an event could not be read from file try to open new file
|
---|
688 | //
|
---|
689 | const Int_t rc = OpenNextFile();
|
---|
690 | if (rc!=kTRUE)
|
---|
691 | return rc;
|
---|
692 |
|
---|
693 | if (ReadNextBlockHeader() == kFALSE)
|
---|
694 | return kFALSE;
|
---|
695 | }
|
---|
696 | return kTRUE;
|
---|
697 | }
|
---|
698 |
|
---|
699 |
|
---|
700 | // --------------------------------------------------------------------------
|
---|
701 | //
|
---|
702 | // Close the file. Check whether the number of read events differs from
|
---|
703 | // the number the file should containe (MCorsikaRunHeader). Prints a warning
|
---|
704 | // if it doesn't match.
|
---|
705 | //
|
---|
706 | Int_t MCorsikaRead::PostProcess()
|
---|
707 | {
|
---|
708 |
|
---|
709 | const UInt_t n = fNumTotalEvents;//fNumEvents*fRunHeader->GetNumReuse()*(fTelescopeIdx<0?fNumTelescopes:1);
|
---|
710 |
|
---|
711 | //
|
---|
712 | // Sanity check for the number of events
|
---|
713 | //
|
---|
714 | if (n==GetNumExecutions()-1 || GetNumExecutions()==0)
|
---|
715 | return kTRUE;
|
---|
716 |
|
---|
717 | *fLog << warn << dec;
|
---|
718 | *fLog << "Warning - Number of read events (" << GetNumExecutions()-1;
|
---|
719 | *fLog << ") doesn't match number in RUNE section(s) (" << n << ")";
|
---|
720 | //*fLog << fRunHeader->GetNumReuse() << "*" << fNumEvents << "=" << n << ")." << endl;
|
---|
721 |
|
---|
722 |
|
---|
723 | return kTRUE;
|
---|
724 | }
|
---|
725 |
|
---|