File indexing completed on 2025-04-19 09:09:54
0001 #ifndef ATOOLS_Phys_Color_Tester_H
0002 #define ATOOLS_Phys_Color_Tester_H
0003
0004 #include "ATOOLS/Phys/Parton_Finder.H"
0005
0006 namespace ATOOLS {
0007
0008 class Color_Tester: public Parton_Tester {
0009 private:
0010
0011 std::pair<unsigned int,unsigned int> m_color;
0012
0013 public:
0014
0015
0016 Color_Tester(const unsigned int index,const unsigned int color);
0017
0018
0019 void Turn();
0020 bool Test(const Particle *parton) const;
0021
0022 };
0023
0024 }
0025
0026 #endif