00001 00002 // $Id: AltAlgStpPatternRecList.h,v 1.2 2004/11/08 23:22:10 gmieg Exp $ 00003 // 00004 // AltAlgStpPatternRecList.h 00005 // 00006 // -- Algorithm using Neural Net Techniques to compute the likelihoods 00007 // for each strip, for all slices in a givel spill, to belong in a 00008 // "track-like" or a "shower-like" formation 00009 // 00010 // Costas Andreopoulos <C.V.Andreopoulos@rl.ac.uk> 00011 // CCLRC, Rutherford Appleton Laboratory 00012 // July 01, 2003 00014 00015 #ifndef _ALT_ALG_STP_PATTERN_REC_LIST_H_ 00016 #define _ALT_ALG_STP_PATTERN_REC_LIST_H_ 00017 00018 #include "Algorithm/AlgBase.h" 00019 #include "RecoBase/CandStripHandle.h" 00020 00021 class AltAlgStpPatternRecList : public AlgBase 00022 { 00023 00024 public: 00025 AltAlgStpPatternRecList(); 00026 virtual ~AltAlgStpPatternRecList(); 00027 virtual void RunAlg(AlgConfig &ac, CandHandle &ch, CandContext &cx); 00028 virtual void Trace(const char *c) const; 00029 00030 private: 00031 00032 ClassDef(AltAlgStpPatternRecList,0) 00033 }; 00034 00035 #endif // _ALT_ALG_STP_PATTERN_REC_LIST_H_ 00036
1.3.9.1