00001 00002 #ifndef ALGFARDETSTRIPLIST_H 00003 #define ALGFARDETSTRIPLIST_H 00004 00005 #include "Algorithm/AlgBase.h" 00006 00007 #include "TObjArray.h" 00008 00009 class AlgFarDetStripList : public AlgBase 00010 { 00011 00012 public: 00013 AlgFarDetStripList(); 00014 virtual ~AlgFarDetStripList(); 00015 virtual void RunAlg(AlgConfig &ac, CandHandle &ch, CandContext &cx); 00016 virtual void Trace(const char *c) const; 00017 00018 private: 00019 TObjArray fVfbList[300]; 00020 TObjArray* fPairList; 00021 TObjArray* fVaList; 00022 00023 ClassDef(AlgFarDetStripList,1) 00024 00025 }; 00026 00027 #endif
1.3.9.1