00001 #ifndef ATMOSDEADCHIP_H 00002 #define ATMOSDEADCHIP_H 00003 00004 #include "TObject.h" 00005 00006 class AtmosDeadChip : public TObject 00007 { 00008 public: 00009 AtmosDeadChip(); 00010 ~AtmosDeadChip(); 00011 void Init(); 00012 00013 Int_t Crate; // readout channel: crate 00014 Int_t Varc; // readout channel: varc 00015 Int_t Vmm; // readout channel: vmm 00016 Int_t VaAdc; // readout channel: vaadc 00017 Int_t VaChip; // readout channel: vachip 00018 Int_t InReadout; // channel is in detector/shield readout 00019 Int_t Plane[2]; // plane number [min,max] 00020 Int_t Shield; // channel is in shield readout 00021 Int_t ErrorCode; // error code (from raw digit) 00022 Int_t Status; // problem with channel (bit-packed) 00023 00024 private: 00025 00026 ClassDef(AtmosDeadChip, 1) 00027 }; 00028 00029 #endif
1.3.9.1