00001 00002 // $Id: ANtpTrackInfoNC.h,v 1.13 2007/05/02 15:08:38 brebel Exp $ 00003 // 00004 // A class to hold information about an event in an analysis ntuple 00005 // 00006 // B. Rebel 1/2005 00008 #ifndef ANTPTRACKINFONC_H 00009 #define ANTPTRACKINFONC_H 00010 00011 #include "AnalysisNtuples/ANtpTrackInfo.h" 00012 00013 class ANtpTrackInfoNC : public ANtpTrackInfo 00014 { 00015 00016 public: 00017 ANtpTrackInfoNC(); 00018 virtual ~ANtpTrackInfoNC(); 00019 00020 void Reset(); 00021 00022 //the following variables are used in the NC analysis 00023 Int_t xTalkStrips; //number of strips that are from x talk-not used 00024 Float_t uvAsymmetry; //asymmetry in number of u and v planes in track-not used 00025 Float_t planeUseFraction; //fraction of event planes used in track-not used 00026 Float_t signalUseFraction; //fraction of event signal used in track-not used 00027 Float_t twoEndStripFraction; //fraction of track strips that are double ended-not used 00028 Int_t trackLikePlanes; //number of planes in track that appear to be track-like-not used 00029 Float_t dtdz; //gradient of t(z) fit (with c_light=1) 00030 Float_t phPerStrip; //ph of track divided by total strips 00031 Float_t phPerPlane; //ph of track divided by total planes 00032 00033 Float_t aTrkpass_ns ; // Track fit pass 00034 Float_t aTrkph_ns ; // Track ph 00035 Float_t aTrklen_ns ; // track length 00036 Float_t aTrkphperpl_ns ; // Track ph per plane 00037 Float_t aTrkphper_ns ; // Track ph fraction 00038 Float_t aTrkplu_ns ; // Track # u planes 00039 Float_t aTrkplv_ns ; // Track # v planes 00040 Float_t aTrkstp_ns ; // Track strips 00041 Float_t aTrkvtx_ns ; // Track vertex 00042 00043 Float_t kNN; //5240 - k nearest neighbors value 00044 Float_t numScintPlanes; //7001 = number of scintillator planes 00045 Float_t meanSigCor; //7010 = mean sigcor 00046 Float_t meanLowStripDivHighStrip; //7020 = mean of low strip sigcor/mean 00047 //of high strip sigcor 00048 Float_t trackSigCorFraction; //7040 - track sigcor/sigcor 00049 //of strips near track 00050 //depricated variables 00051 //Float_t activeTrackPlaneFraction;//7000 - number of active track planes/total 00052 //number of active detector planes 00053 //Float_t endPHFraction; //7030 - pulse height at the end of the 00054 //track/track pulse height 00055 00056 private: 00057 00058 ClassDef(ANtpTrackInfoNC, 7) //ANtpTrackInfoNC 00059 }; 00060 00061 #endif // ANTPTRACKINFONC_H 00062 00063
1.3.9.1