source: trunk/MagicSoft/Mars/mraw/MRawRunHeader.h@ 9181

Last change on this file since 9181 was 9180, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 7.0 KB
Line 
1#ifndef MARS_MRawRunHeader
2#define MARS_MRawRunHeader
3///////////////////////////////////////////////////////////////////////
4// //
5// MRunHeader //
6// //
7///////////////////////////////////////////////////////////////////////
8
9#ifndef MARS_MTime
10#include "MTime.h"
11#endif
12
13class TBuffer;
14class MArrayS;
15
16class MRawRunHeader : public MParContainer
17{
18public:
19 //
20 // enum for the Run Type. Monte Carlo Runs have
21 // to have a value greater than 255 (>0xff)
22 //
23 enum {
24 kRTData = 0x0000,
25 kRTPedestal = 0x0001,
26 kRTCalibration = 0x0002,
27 kRTLinearity = 0x0004,
28 kRTPointRun = 0x0007,
29 kRTMonteCarlo = 0x0100,
30 kRTNone = 0xffff
31 };
32
33 //
34 // Magic number to detect the magic file type
35 //
36 static const UShort_t kMagicNumber;
37 static const Byte_t kMaxFormatVersion;
38
39private:
40 /* ---- Run Header Informations ---- */
41 UShort_t fMagicNumber; // File type identifier
42
43 UInt_t fHeaderSizeRun; // Size of run header
44 UInt_t fHeaderSizeEvt; // Size of evt header
45 UInt_t fHeaderSizeCrate; // Size of crate header
46
47 UShort_t fFormatVersion; // File format version
48 UShort_t fSoftVersion; // DAQ software version
49 UShort_t fFadcType; // FADC type (1=Siegen, 2=MUX)
50 UShort_t fCameraVersion; // Camera Version (1=MAGIC I)
51 UShort_t fTelescopeNumber; // Telescope number (1=Magic I)
52 UShort_t fRunType; // Run Type
53 UInt_t fRunNumber; // Run number
54 UInt_t fFileNumber; // File number
55 Char_t fProjectName[101]; // Project name
56 Char_t fSourceName[81]; // Source name
57 Char_t fObservationMode[61]; // observation mode
58 Char_t fSourceEpochChar[4]; // epoch char of the source
59 UShort_t fSourceEpochDate; // epoch date of the source
60 UShort_t fNumCrates; // number of electronic boards
61 UShort_t fNumPixInCrate; // number of pixels in crate
62 UShort_t fNumSamplesLoGain; // number of logain samples stored
63 UShort_t fNumSamplesHiGain; // number of higain samples stored
64 UShort_t fNumBytesPerSample; // number of bytes per sample
65 UInt_t fNumEvents; // number of events stored
66 UInt_t fNumEventsRead; // number of events read by the electronics
67 UShort_t fSamplingFrequency; // Sampling Frequency [MHz]
68 Byte_t fFadcResolution; // number of significant bits
69 MTime fRunStart; // time of run start
70 MTime fRunStop; // time of run stop
71 MArrayS *fPixAssignment; //-> pixel assignment table
72
73 Bool_t SwapAssignment(Short_t id0, Short_t id1);
74 Bool_t FixAssignment();
75 Bool_t Fixes();
76 Bool_t IsConsistent() const;
77
78 Bool_t ReadEvtOld(istream& fin);
79
80public:
81 MRawRunHeader(const char *name=NULL, const char *title=NULL);
82 ~MRawRunHeader();
83
84 // This is to be used in the MC chain only!
85 void SetMagicNumber(UShort_t a) { fMagicNumber=a; }
86 void SetFormatVersion(UShort_t a) { fFormatVersion=a; }
87 void SetSoftVersion(UShort_t a) { fSoftVersion=a; }
88 void SetRunType(UShort_t a) { fRunType=a; }
89 void SetRunNumber(UInt_t a) { fRunNumber=a; }
90 void SetNumEvents(UInt_t a) { fNumEvents=a; }
91 void SetNumSamples(UShort_t low, UShort_t high)
92 {
93 fNumSamplesLoGain=low;
94 fNumSamplesHiGain=high;
95 }
96 void SetNumCrates(UShort_t a) { fNumCrates=a; }
97 void SetNumPixInCrate(UShort_t a) { fNumPixInCrate=a; }
98 void SetRunTime(Float_t start, Float_t stop)
99 { fRunStart.SetMjd(start); fRunStop.SetMjd(stop); }
100
101 // This is to get the numbers...
102 UShort_t GetMagicNumber() const { return fMagicNumber; }
103 UInt_t GetHeaderSizeEvt() const { return fHeaderSizeEvt; }
104 UInt_t GetHeaderSizeCrate() const { return fHeaderSizeCrate; }
105 UShort_t GetFormatVersion() const { return fFormatVersion; }
106 UShort_t GetSoftVersion() const { return fSoftVersion; }
107 UInt_t GetRunNumber() const { return fRunNumber; }
108 UInt_t GetFileNumber() const { return fFileNumber; }
109 UInt_t GetTypeID() const { return (fRunNumber/1000000)%100; }
110 UInt_t GetFileID() const { return fRunNumber>1000000?(fRunNumber%1000000)*1000+(fFileNumber%1000):fRunNumber; }
111 TString GetStringID() const;
112 UShort_t GetTelescopeNumber() const { return fRunType; }
113 UShort_t GetRunType() const { return fRunType; }
114 const Char_t *GetRunTypeStr() const;
115 const Char_t *GetProjectName() const { return fProjectName; }
116 const Char_t *GetSourceName() const { return fSourceName; }
117 const Char_t *GetSourceEpocheChar() const { return fSourceEpochChar; }
118 const Char_t *GetObservationMode() const { return fObservationMode; }
119 UShort_t GetSourceEpocheDate() const { return fSourceEpochDate; }
120 UShort_t GetNumCrates() const { return fNumCrates; }
121 UShort_t GetNumPixInCrate() const { return fNumPixInCrate; }
122 UShort_t GetNumSamplesLoGain() const { return fNumSamplesLoGain; }
123 UShort_t GetNumSamplesHiGain() const { return fNumSamplesHiGain; }
124 UInt_t GetNumSamples() const { return fNumSamplesHiGain+fNumSamplesLoGain; }
125 UShort_t GetNumBytesPerSample() const { return fNumBytesPerSample; }
126 UInt_t GetNumEvents() const { return fNumEvents; }
127 UInt_t GetNumEventsRead() const { return fNumEventsRead; }
128 UShort_t GetFreqSampling() const { return fSamplingFrequency; }
129 const MTime &GetRunStart() const { return fRunStart; }
130 const MTime &GetRunEnd() const { return fRunStop; }
131 Double_t GetRunLength() const { return !fRunStart || !fRunStop ? 0 : fRunStop-fRunStart; }
132 Short_t GetPixAssignment(UShort_t i) const;
133 UShort_t GetMaxPixId() const;
134 UShort_t GetMinPixId() const;
135 UShort_t GetNumConnectedPixels() const;
136 UShort_t GetNumNormalPixels() const;
137 UShort_t GetNumSpecialPixels() const;
138 UInt_t GetScale() const { switch (fNumBytesPerSample) { case 1: return 0x1; case 2: return 0x100; case 4: return 0x1000000; } return 0; }
139 UInt_t GetMax() const { switch (fNumBytesPerSample) { case 1: return 0xff; case 2: return 0xffff; case 4: return 0xffffffff; } return 0; }
140
141 UInt_t GetNumSamplesPerCrate() const
142 {
143 return fNumPixInCrate*(fNumSamplesLoGain+fNumSamplesHiGain);
144 }
145
146 UShort_t GetNumPixel() const;
147 Int_t GetNumTotalBytes() const;
148
149 Bool_t IsValid() const { return fMagicNumber==0xc0c0 || fMagicNumber==0xc0c1; }
150 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; }
151
152 void Print(Option_t *t=NULL) const;
153
154 Bool_t ReadEvt(istream& fin);
155
156 ClassDef(MRawRunHeader, 10) // storage container for general info
157};
158#endif
Note: See TracBrowser for help on using the repository browser.