00001 00002 // $Id: ANtpShowerInfoNC.h,v 1.10 2007/03/22 18:48:05 brebel Exp $ 00003 // 00004 // A class to hold information about an event in an analysis ntuple 00005 // 00006 // B. Rebel 1/2005 00008 #ifndef ANTPSHOWERINFONC_H 00009 #define ANTPSHOWERINFONC_H 00010 00011 #include "AnalysisNtuples/ANtpShowerInfo.h" 00012 00013 class ANtpShowerInfoNC : public ANtpShowerInfo 00014 { 00015 00016 public: 00017 ANtpShowerInfoNC(); 00018 virtual ~ANtpShowerInfoNC(); 00019 00020 void Reset(); 00021 00022 //the following variables are used in the NC analysis 00023 Float_t energyGeV; //energy of shower in GeV 00024 Int_t xTalkStrips; //number of strips from xtalk in shower - not used 00025 Float_t planeUseFraction; //fraction of event planes used in shower - not used 00026 Float_t signalUseFraction; //fraction of event signal used in shower - not used 00027 Float_t twoEndStripFraction; //fraction of shower strips that are double ended - not used 00028 Float_t transverseRMSU; //rms of tranvservse strip positions in U 00029 Float_t transverseRMSV; //rms of tranvservse strip positions in V 00030 00031 Float_t emFrac; //fraction of strips classified as "EM-like" 00032 //as defined in cluster branch - not used 00033 Float_t phKurtosis; //related to the 4th-moment of the ph distrib. - not used 00034 //measure of 'peaked-ness' 00035 Float_t phPerStrip; //ph of shower divided by total strips 00036 Float_t phPerPlane; //ph of shower divided by total planes 00037 Float_t aShwdig_ns; 00038 Float_t aShwplu_ns; 00039 Float_t aShwplv_ns; 00040 00041 private: 00042 00043 00044 ClassDef(ANtpShowerInfoNC, 6) //ANtpShowerInfoNC 00045 }; 00046 00047 #endif // ANTPSHOWERINFONC_H 00048 00049
1.3.9.1