00001
00002
00003
00004
00005
00006
00007 #ifndef HEPMCHELPER_ASCENDINGETA_H
00008 #define HEPMCHELPER_ASCENDINGETA_H
00009
00010 #ifndef HEPMCHELPER_IMCSELECTOR_H
00011 #include "AtlfastUtils/HepMC_helper/IMCselector.h"
00012 #endif
00013
00014 namespace HepMC_helper{
00015
00016 class AscendingEta {
00017 public:
00018 bool operator()
00019 ( const Particle* const a,
00020 const Particle* const b ) const;
00021 bool operator()
00022 ( const Particle& a,
00023 const Particle& b ) const;
00024 };
00025 }
00026 #endif