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

Last change on this file since 18244 was 17782, checked in by tbretz, 10 years ago
Added a possibility to access the Fits Stream and the PCTime in a constant manner
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 const string type = fin.GetStr("RUNTYPE");
159
160 fRawRunHeader->SetValidMagicNumber();
161 fRawRunHeader->SetNumEvents(fin.GetNumRows());//GetUInt("NAXIS2"));
162 fRawRunHeader->InitPixels(fin.GetUInt("NPIX"));
163 fRawRunHeader->SetObservation(type=="4294967295"?"":fin.GetStr("RUNTYPE"), "FACT");
164 fRawRunHeader->SetRunInfo(0, fin.GetUInt("NIGHT"), fin.GetUInt("RUNID"));
165 fRawRunHeader->InitFact(fin.GetUInt("NPIX")/9, 9, fin.GetUInt("NROI"), fPixelMap.size()==0?0:fPixelMap.data());
166 if (!fin.HasKey("ISMC")){
167 fRawRunHeader->SetFormat(0xf172, fin.GetUInt("BLDVER"));
168 }
169 fRawRunHeader->SetRunType(0/*data*/);
170
171 if (!fin.HasKey("ISMC")){
172 const string runstart = fin.GetStr("DATE-OBS");
173 const string runstop = fin.GetStr("DATE-END");
174
175 fRawRunHeader->SetRunTime(MTime(runstart.c_str()), MTime(runstop.c_str()));
176 }
177
178 if (!fin.HasKey("ISMC"))
179 return
180 fin.HasKey("NPIX") && fin.HasKey("RUNID") &&
181 fin.HasKey("NROI") && fin.HasKey("BLDVER") &&
182 fin.HasKey("NIGHT");
183 else
184 return
185 fin.HasKey("NPIX") && fin.HasKey("RUNID") &&
186 fin.HasKey("NROI") && fin.HasKey("NIGHT");
187}
188
189Bool_t MRawFitsRead::InitReadData(istream &stream)
190{
191 factfits &fin = static_cast<factfits&>(stream);
192
193 MArrayB **data = reinterpret_cast<MArrayB**>(fRawEvtData1->DataMember("fHiGainFadcSamples"));
194 MArrayS **cell = reinterpret_cast<MArrayS**>(fRawEvtData1->DataMember("fStartCells"));
195 UInt_t *evtnum = reinterpret_cast<UInt_t*> (fRawEvtHeader->DataMember("fDAQEvtNumber"));
196
197 // The 'wrong' cast is intentional because we read only two bytes from the file
198 UShort_t *trg = reinterpret_cast<UShort_t*>(fRawEvtHeader->DataMember("fTrigPattern"));
199
200 if (!data || !cell || !evtnum || !trg)
201 return kFALSE;
202
203 fRawEvtData1->ResetPixels();
204 fRawEvtData2->ResetPixels(0, 0);
205 fRawEvtData1->InitStartCells();
206
207 if (!fin.SetRefAddress("EventNum", *evtnum))
208 return kFALSE;
209
210 if (!fin.SetRefAddress("TriggerType", *trg))
211 return kFALSE;
212
213 if (!fin.HasKey("ISMC")){
214 if (!fin.SetRefAddress("NumBoards", fNumBoards))
215 return kFALSE;
216
217 fPCTime.resize(2);
218 if (!fin.SetVecAddress("UnixTimeUTC", fPCTime))
219 if (!fin.SetVecAddress("PCTime", fPCTime))
220 return kFALSE;
221
222
223 if (!fin.SetPtrAddress("BoardTime", fRawBoards->fFadTime, 40))
224 return kFALSE;
225 }
226 else
227 fIsMc = kTRUE;
228
229
230 if (!fin.SetPtrAddress("Data", (int16_t*)(*data)->GetArray(), (*data)->GetSize()/2))
231 return kFALSE;
232
233 if (!fin.SetPtrAddress("StartCellData", (uint16_t*)(*cell)->GetArray(), (*cell)->GetSize()))
234 return kFALSE;
235
236 fRawEvtData1->SetIndices(fRawRunHeader->GetPixAssignment());
237
238 return kTRUE;
239}
240
241Bool_t MRawFitsRead::ReadEvent(istream &stream)
242{
243 if (!static_cast<factfits&>(stream).GetNextRow())
244 return kFALSE;
245
246 if (!fIsMc)
247 {
248 // Skip incomplete events
249 if (fNumBoards!=40)
250 return kCONTINUE;
251
252 fRawEvtTime->SetUnixTime(fPCTime[0], fPCTime[1]);
253
254 }
255 // FIXME: Correctly sort the pixels here!
256
257 fRawEvtData1->SetReadyToSave();
258 fRawEvtData2->SetReadyToSave();
259
260 return kTRUE;
261}
262
263void MRawFitsRead::SkipEvent(istream &fin)
264{
265 static_cast<factfits&>(fin).SkipNextRow();
266}
Note: See TracBrowser for help on using the repository browser.