source: trunk/Mars/mraw/MRawFitsRead.cc@ 18564

Last change on this file since 18564 was 18564, checked in by tbretz, 8 years ago
Set the run type to monte carlo if it is a monte carlo file as it is supposed to be.
File size: 6.9 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 07/2011 <mailto:thomas.bretz@epfl.ch>
19!
20! Copyright: MAGIC Software Development, 2000-2011
21!
22!
23\* ======================================================================== */
24
25//////////////////////////////////////////////////////////////////////////////
26//
27// MRawFitsRead
28//
29// This tasks reads the fits data file in the form used by FACT.
30//
31// Input Containers:
32// -/-
33//
34// Output Containers:
35// MRawRunHeader, MRawEvtHeader, MRawEvtData, MRawEvtTime
36//
37//////////////////////////////////////////////////////////////////////////////
38#include "MRawFitsRead.h"
39
40#include <fstream>
41
42#include <TClass.h>
43
44#include "MLog.h"
45#include "MLogManip.h"
46
47#include "factfits.h"
48#include "MTime.h"
49
50#include "MArrayB.h"
51#include "MArrayS.h"
52
53#include "MParList.h"
54
55#include "MRawRunHeader.h"
56#include "MRawEvtHeader.h"
57#include "MRawEvtData.h"
58#include "MRawBoardsFACT.h"
59
60ClassImp(MRawFitsRead);
61
62using namespace std;
63
64// --------------------------------------------------------------------------
65//
66// Default constructor. It tries to open the given file.
67//
68MRawFitsRead::MRawFitsRead(const char *fname, const char *name, const char *title)
69 : MRawFileRead(fname, name, title), fRawBoards(0)
70{
71}
72
73const fits *MRawFitsRead::GetFitsFile() const
74{
75 return static_cast<const fits*>(GetStream());
76}
77
78Int_t MRawFitsRead::PreProcess(MParList *pList)
79{
80 fRawBoards = (MRawBoardsFACT*)pList->FindCreateObj("MRawBoardsFACT");
81 if (!fRawBoards)
82 return kFALSE;
83
84 return MRawFileRead::PreProcess(pList);
85}
86
87Bool_t MRawFitsRead::LoadMap(const char *name)
88{
89 fPixelMap.resize(1440);
90
91 if (!name)
92 return kTRUE;
93
94 ifstream fin(name);
95
96 int l = 0;
97
98 string buf;
99 while (getline(fin, buf, '\n'))
100 {
101 if (l>1439)
102 break;
103
104 const TString bf = TString(buf.c_str()).Strip(TString::kBoth);
105 if (bf[0]=='#')
106 continue;
107
108 stringstream str(bf.Data());
109
110 int index, cbpx;
111
112 str >> index;
113 str >> cbpx;
114
115 const int c = cbpx/1000;
116 const int b = (cbpx/100)%10;
117 const int p = (cbpx/10)%10;
118 const int x = cbpx%10;
119
120 const int hw = x+p*9+b*36+c*360;
121 if (hw>1439)
122 break;
123
124 fPixelMap[hw] = index;
125 l++;
126 }
127
128 if (l!=1440)
129 {
130 gLog << err << "ERROR - Problems reading " << name << endl;
131 fPixelMap.resize(0);
132 return kFALSE;
133 }
134
135 return kTRUE;
136}
137
138Bool_t MRawFitsRead::IsFits(const char *name)
139{
140 return factfits(name).good();
141}
142
143istream *MRawFitsRead::OpenFile(const char *filename)
144{
145 return new factfits(filename);
146}
147
148Bool_t MRawFitsRead::ReadRunHeader(istream &stream)
149{
150 factfits &fin = static_cast<factfits&>(stream);
151
152 if (fin.GetStr("TELESCOP")!="FACT")
153 {
154 gLog << err << "Not a valid FACT FITS file (key TELESCOP not 'FACT')." << endl;
155 return kFALSE;
156 }
157
158 fIsMc = fin.HasKey("ISMC");
159
160 const string type = fin.GetStr("RUNTYPE");
161
162 fRawRunHeader->SetValidMagicNumber();
163 fRawRunHeader->SetNumEvents(fin.GetNumRows());//GetUInt("NAXIS2"));
164 fRawRunHeader->InitPixels(fin.GetUInt("NPIX"));
165 fRawRunHeader->SetObservation(type=="4294967295"?"":fin.GetStr("RUNTYPE"), "FACT");
166 fRawRunHeader->SetRunInfo(0, fin.GetUInt("NIGHT"), fin.GetUInt("RUNID"));
167 fRawRunHeader->InitFact(fin.GetUInt("NPIX")/9, 9, fin.GetUInt("NROI"), fPixelMap.size()==0?0:fPixelMap.data());
168 fRawRunHeader->SetFormat(0xf172, fIsMc ? 0 : fin.GetUInt("BLDVER"));
169 fRawRunHeader->SetRunType(fIsMc ? 0/*data*/ : 0x0100/*mc*/);
170
171 if (!fIsMc)
172 {
173 const string runstart = fin.GetStr("DATE-OBS");
174 const string runstop = fin.GetStr("DATE-END");
175
176 fRawRunHeader->SetRunTime(MTime(runstart.c_str()), MTime(runstop.c_str()));
177 }
178
179 for (int i=0; i<1000; i++)
180 {
181 const string clnamed = Form("CLNAME%d", i);
182 if (!fin.HasKey(clnamed))
183 break;
184
185 const string clname = fin.GetStr(clnamed);
186
187 MParContainer *par = (MParContainer*)fParList->FindCreateObj(clname.c_str());
188 if (par)
189 par->SetupFits(fin);
190 }
191
192 return
193 fin.HasKey("NPIX") && fin.HasKey("RUNID") &&
194 fin.HasKey("NROI") && fin.HasKey("NIGHT");
195}
196
197Bool_t MRawFitsRead::InitReadData(istream &stream)
198{
199 factfits &fin = static_cast<factfits&>(stream);
200
201 MArrayB **data = reinterpret_cast<MArrayB**>(fRawEvtData1->DataMember("fHiGainFadcSamples"));
202 MArrayS **cell = reinterpret_cast<MArrayS**>(fRawEvtData1->DataMember("fStartCells"));
203 UInt_t *evtnum = reinterpret_cast<UInt_t*> (fRawEvtHeader->DataMember("fDAQEvtNumber"));
204
205 // The 'wrong' cast is intentional because we read only two bytes from the file
206 UShort_t *trg = reinterpret_cast<UShort_t*>(fRawEvtHeader->DataMember("fTrigPattern"));
207
208 if (!data || !cell || !evtnum || !trg)
209 return kFALSE;
210
211 fRawEvtData1->ResetPixels();
212 fRawEvtData2->ResetPixels(0, 0);
213 fRawEvtData1->InitStartCells();
214
215 if (!fin.SetRefAddress("EventNum", *evtnum))
216 return kFALSE;
217
218 if (!fin.SetRefAddress("TriggerType", *trg))
219 return kFALSE;
220
221 if (!fIsMc)
222 {
223 if (!fin.SetRefAddress("NumBoards", fNumBoards))
224 return kFALSE;
225
226 fPCTime.resize(2);
227 if (!fin.SetVecAddress("UnixTimeUTC", fPCTime))
228 if (!fin.SetVecAddress("PCTime", fPCTime))
229 return kFALSE;
230
231 if (!fin.SetPtrAddress("BoardTime", fRawBoards->fFadTime, 40))
232 return kFALSE;
233 }
234
235 if (!fin.SetPtrAddress("Data", (int16_t*)(*data)->GetArray(), (*data)->GetSize()/2))
236 return kFALSE;
237
238 if (!fin.SetPtrAddress("StartCellData", (uint16_t*)(*cell)->GetArray(), (*cell)->GetSize()))
239 return kFALSE;
240
241 fRawEvtData1->SetIndices(fRawRunHeader->GetPixAssignment());
242
243 return kTRUE;
244}
245
246Bool_t MRawFitsRead::ReadEvent(istream &stream)
247{
248 if (!static_cast<factfits&>(stream).GetNextRow())
249 return kFALSE;
250
251 if (!fIsMc)
252 {
253 // Skip incomplete events
254 if (fNumBoards!=40)
255 return kCONTINUE;
256
257 fRawEvtTime->SetUnixTime(fPCTime[0], fPCTime[1]);
258
259 }
260 fRawEvtData1->SetReadyToSave();
261 fRawEvtData2->SetReadyToSave();
262
263 return kTRUE;
264}
265
266void MRawFitsRead::SkipEvent(istream &fin)
267{
268 static_cast<factfits&>(fin).SkipNextRow();
269}
Note: See TracBrowser for help on using the repository browser.