00001 #ifndef ATMOSDATA_H
00002 #define ATMOSDATA_H
00003
00004 #include "Rtypes.h"
00005
00006 class AtmosData
00007 {
00008 public:
00009 AtmosData();
00010 virtual ~AtmosData();
00011 void Reset();
00012
00013 Int_t TriggerSource;
00014 Int_t TriggerTime;
00015 Int_t ErrorCode;
00016 Int_t CrateMask;
00017 Int_t PreTriggerDigits;
00018 Int_t PostTriggerDigits;
00019 Int_t SnarlMultiplicity;
00020 Int_t SpillStatus;
00021 Int_t SpillType;
00022 Int_t SpillTimeError;
00023 Int_t LiTrigger;
00024 Int_t LiTime;
00025 Int_t LiSubtractedTime;
00026 Int_t LiRelativeTime;
00027 Int_t LiCalibPoint;
00028 Int_t LiCalibType;
00029 Int_t LiPulserBox;
00030 Int_t LiPulserLed;
00031 Int_t LiPulseHeight;
00032 Int_t LiPulseWidth;
00033 Int_t ColdChips;
00034 Int_t HotChips;
00035 Int_t BusyChips;
00036 Int_t ReadoutErrors;
00037 Int_t DataQualityBitMap;
00038
00039
00040 private:
00041
00042 ClassDef(AtmosData,1)
00043 };
00044
00045 #endif