00001
00002
00003
00004
00005
00006
00008 #ifndef ANTPANALYSISINFO_H
00009 #define ANTPANALYSISINFO_H
00010
00011 #include "TObject.h"
00012
00013 class ANtpAnalysisInfo : public TObject
00014 {
00015
00016 public:
00017 ANtpAnalysisInfo();
00018 virtual ~ANtpAnalysisInfo();
00019
00020 void Reset();
00021
00022
00023 Int_t isNC;
00024 Int_t isCC;
00025 Float_t separationParameterCut;
00026 Float_t separationParameter;
00027 Float_t separationParameterPAN;
00028 Int_t pass;
00029
00030 private:
00031
00032 ClassDef(ANtpAnalysisInfo, 8)
00033 };
00034
00035 #endif // ANTPANALYSISINFO_H
00036
00037