00001 #ifndef ANP_FILLTRACK_H 00002 #define ANP_FILLTRACK_H 00003 00004 // $Id: FillTrack.h,v 1.9 2008/01/31 22:18:17 rustem Exp $ 00005 // 00006 // Fill reconstructed track information 00007 // 00008 00009 // Local 00010 #include "PhysicsNtuple/AlgStore.h" 00011 #include "FillBasic.h" 00012 00013 class NtpStRecord; 00014 class NtpSRTrack; 00015 00016 namespace Anp 00017 { 00018 class FillTrack: public AlgStore 00019 { 00020 public: 00021 00022 FillTrack(); 00023 virtual ~FillTrack(); 00024 00025 bool Run(Record &record, TObject *ptr = 0); 00026 00027 void Config(const Registry ®); 00028 00029 private: 00030 00031 bool fCorr; 00032 00033 FillBasic fBasic; 00034 }; 00035 } 00036 00037 #endif 00038 00039