dummyV0Cut.h 938 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /***************************************************************************
  2. *
  3. * $Id:
  4. *
  5. * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu
  6. ***************************************************************************
  7. *
  8. * Description: part of STAR HBT Framework: StHbtMaker package
  9. * a do-nothing V0 cut that always says "yes" to every V0
  10. *
  11. ***************************************************************************
  12. *
  13. * $Log:
  14. *
  15. **************************************************************************/
  16. #ifndef dummyV0Cut_hh
  17. #define dummyV0Cut_hh
  18. //#ifndef StMaker_H
  19. //#include "StMaker.h"
  20. //#endif
  21. #include "StHbtMaker/Base/StHbtV0Cut.h"
  22. class dummyV0Cut : public StHbtV0Cut{
  23. public:
  24. dummyV0Cut();
  25. //~dummyV0Cut(){/* no-op*/}
  26. virtual bool Pass(const StHbtV0*);
  27. virtual StHbtString Report();
  28. #ifdef __ROOT__
  29. ClassDef(dummyV0Cut, 1)
  30. #endif
  31. private:
  32. long mNpassed;
  33. long mNfailed;
  34. };
  35. #endif