00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef ATLFAST_IACCEPTOR_H
00018 #define ATLFAST_IACCEPTOR_H
00019
00020 #include <vector>
00021
00022 #include "AtlfastEvent/ReconstructedParticle.h"
00023
00024 #include "GaudiKernel/MsgStream.h"
00025
00026 #include "CLHEP/Vector/LorentzVector.h"
00027 #include "HepMC/GenParticle.h"
00028
00029 namespace Atlfast {
00030
00037 class IAcceptor {
00038 public:
00039
00041 virtual bool accept( const ReconstructedParticle& particle, MsgStream &log) = 0;
00042
00044 virtual ~IAcceptor(){}
00045
00046 };
00047
00048
00049 }
00050
00051 #endif
00052
00053
00054