StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
dummyV0Cut.cxx
1 /***************************************************************************
2  *
3  *
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 simply says "true" to every v0
10  *
11  ***************************************************************************
12  *
13  *
14  *
15  **************************************************************************/
16 
17 #include "StHbtMaker/Cut/dummyV0Cut.h"
18 
19 #ifdef __ROOT__
20 ClassImp(dummyV0Cut)
21 #endif
22 //________________________
23 dummyV0Cut::dummyV0Cut(){
24  mNpassed = mNfailed = 0;
25 }
26 //________________________
27 bool dummyV0Cut::Pass(const StHbtV0* v0)
28 {
29  mNpassed++;
30  return (true);
31 }
32 //________________________
33 StHbtString dummyV0Cut::Report()
34 {
35  return "dummyV0Cut\n";
36 }
37 //________________________
38