| 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 |
|
|---|
| 13 | class TBuffer;
|
|---|
| 14 | class MArrayS;
|
|---|
| 15 |
|
|---|
| 16 | class MRawRunHeader : public MParContainer
|
|---|
| 17 | {
|
|---|
| 18 | public:
|
|---|
| 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 | kRTPointRun = 0x0007,
|
|---|
| 28 | kRTMonteCarlo = 0x0100,
|
|---|
| 29 | kRTNone = 0xffff
|
|---|
| 30 | };
|
|---|
| 31 |
|
|---|
| 32 | //
|
|---|
| 33 | // Magic number to detect the magic file type
|
|---|
| 34 | //
|
|---|
| 35 | static const UShort_t kMagicNumber;
|
|---|
| 36 | static const Byte_t kMaxFormatVersion;
|
|---|
| 37 |
|
|---|
| 38 | private:
|
|---|
| 39 | /* ---- Run Header Informations ---- */
|
|---|
| 40 | UShort_t fMagicNumber;
|
|---|
| 41 | UShort_t fFormatVersion;
|
|---|
| 42 | UShort_t fSoftVersion;
|
|---|
| 43 | UShort_t fRunType;
|
|---|
| 44 | UInt_t fRunNumber;
|
|---|
| 45 | Char_t fProjectName[23];
|
|---|
| 46 | Char_t fSourceName[13];
|
|---|
| 47 | Char_t fSourceEpochChar[2];
|
|---|
| 48 | UShort_t fSourceEpochDate;
|
|---|
| 49 | UShort_t fNumCrates;
|
|---|
| 50 | UShort_t fNumPixInCrate;
|
|---|
| 51 | UShort_t fNumSamplesLoGain;
|
|---|
| 52 | UShort_t fNumSamplesHiGain;
|
|---|
| 53 | UInt_t fNumEvents;
|
|---|
| 54 | MTime fRunStart;
|
|---|
| 55 | MTime fRunStop;
|
|---|
| 56 | MArrayS *fPixAssignment;
|
|---|
| 57 |
|
|---|
| 58 | public:
|
|---|
| 59 | MRawRunHeader(const char *name=NULL, const char *title=NULL);
|
|---|
| 60 | ~MRawRunHeader();
|
|---|
| 61 |
|
|---|
| 62 | // This is to be used in the MC chain only!
|
|---|
| 63 | void SetMagicNumber(UShort_t a) { fMagicNumber=a; }
|
|---|
| 64 | void SetFormatVersion(UShort_t a) { fFormatVersion=a; }
|
|---|
| 65 | void SetSoftVersion(UShort_t a) { fSoftVersion=a; }
|
|---|
| 66 | void SetRunType(UShort_t a) { fRunType=a; }
|
|---|
| 67 | void SetRunNumber(UInt_t a) { fRunNumber=a; }
|
|---|
| 68 | void SetNumEvents(UInt_t a) { fNumEvents=a; }
|
|---|
| 69 | void SetNumSamples(UShort_t low, UShort_t high)
|
|---|
| 70 | {
|
|---|
| 71 | fNumSamplesLoGain=low;
|
|---|
| 72 | fNumSamplesHiGain=high;
|
|---|
| 73 | }
|
|---|
| 74 | void SetNumCrates(UShort_t a) { fNumCrates=a; }
|
|---|
| 75 | void SetNumPixInCrate(UShort_t a) { fNumPixInCrate=a; }
|
|---|
| 76 | void SetRunTime(Float_t start, Float_t stop)
|
|---|
| 77 | { fRunStart.SetMjd(start); fRunStop.SetMjd(stop); }
|
|---|
| 78 |
|
|---|
| 79 | // This is to get the numbers...
|
|---|
| 80 | UShort_t GetMagicNumber() const { return fMagicNumber; }
|
|---|
| 81 | UShort_t GetFormatVersion() const { return fFormatVersion; }
|
|---|
| 82 | UShort_t GetSoftVersion() const { return fSoftVersion; }
|
|---|
| 83 | UInt_t GetRunNumber() const { return fRunNumber; }
|
|---|
| 84 | UShort_t GetRunType() const { return fRunType; }
|
|---|
| 85 | const Char_t *GetRunTypeStr() const;
|
|---|
| 86 | const Char_t *GetProjectName() const { return fProjectName; }
|
|---|
| 87 | const Char_t *GetSourceName() const { return fSourceName; }
|
|---|
| 88 | const Char_t *GetSourceEpocheChar() const { return fSourceEpochChar; }
|
|---|
| 89 | UShort_t GetSourceEpocheDate() const { return fSourceEpochDate; }
|
|---|
| 90 | UShort_t GetNumCrates() const { return fNumCrates; }
|
|---|
| 91 | UShort_t GetNumPixInCrate() const { return fNumPixInCrate; }
|
|---|
| 92 | UShort_t GetNumSamplesLoGain() const { return fNumSamplesLoGain; }
|
|---|
| 93 | UShort_t GetNumSamplesHiGain() const { return fNumSamplesHiGain; }
|
|---|
| 94 | UInt_t GetNumEvents() const { return fNumEvents; }
|
|---|
| 95 | const MTime &GetRunStart() const { return fRunStart; }
|
|---|
| 96 | const MTime &GetRunEnd() const { return fRunStop; }
|
|---|
| 97 | Short_t GetPixAssignment(UShort_t i) const;
|
|---|
| 98 | UShort_t GetMaxPixId() const;
|
|---|
| 99 | UShort_t GetMinPixId() const;
|
|---|
| 100 | UShort_t GetNumConnectedPixels() const;
|
|---|
| 101 | UShort_t GetNumNormalPixels() const;
|
|---|
| 102 | UShort_t GetNumSpecialPixels() const;
|
|---|
| 103 |
|
|---|
| 104 | UInt_t GetNumSamplesPerCrate() const
|
|---|
| 105 | {
|
|---|
| 106 | return fNumPixInCrate*(fNumSamplesLoGain+fNumSamplesHiGain);
|
|---|
| 107 | }
|
|---|
| 108 |
|
|---|
| 109 | UShort_t GetNumPixel() const;
|
|---|
| 110 | Int_t GetNumTotalBytes() const;
|
|---|
| 111 |
|
|---|
| 112 | Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; }
|
|---|
| 113 |
|
|---|
| 114 | void Print(Option_t *t=NULL) const;
|
|---|
| 115 |
|
|---|
| 116 | Bool_t ReadEvt(istream& fin);
|
|---|
| 117 |
|
|---|
| 118 | ClassDef(MRawRunHeader, 3) // storage container for general info
|
|---|
| 119 | };
|
|---|
| 120 | #endif
|
|---|