00001
00002
00003
00004
00005
00006
00008 #ifndef ANTPEVENTINFO_H
00009 #define ANTPEVENTINFO_H
00010
00011 #include "TObject.h"
00012
00013 class ANtpEventInfo : public TObject
00014 {
00015
00016 public:
00017 ANtpEventInfo();
00018 virtual ~ANtpEventInfo();
00019
00020 void Reset();
00021
00022
00023 Int_t index;
00024 Float_t pulseHeight;
00025 Float_t energyGeV;
00026 Int_t begPlane;
00027 Int_t endPlane;
00028 Int_t planes;
00029 Int_t totalStrips;
00030 Int_t passStrips;
00031 Int_t showers;
00032 Int_t tracks;
00033 Float_t vtxX;
00034 Float_t vtxY;
00035 Float_t vtxZ;
00036 Int_t stripsPerPlane[500];
00037 Double_t vertexTime;
00038 Float_t vtxMetersToBeam;
00039 Float_t vtxMetersToCoil;
00040 Float_t vtxMetersToCloseEdge;
00041
00042
00043 private:
00044
00045
00046 ClassDef(ANtpEventInfo, 5)
00047 };
00048
00049 #endif // ANTPEVENTINFO_H
00050
00051