00001 /*************************************************************************** 00002 * 00003 * $Id: 00004 * 00005 * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu 00006 *************************************************************************** 00007 * 00008 * Description: part of STAR HBT Framework: StHbtMaker package 00009 * a do-nothing v0 cut that simply says "true" to every v0 00010 * 00011 *************************************************************************** 00012 * 00013 * $Log: 00014 * 00015 **************************************************************************/ 00016 00017 #include "StHbtMaker/Cut/dummyV0Cut.h" 00018 00019 #ifdef __ROOT__ 00020 ClassImp(dummyV0Cut) 00021 #endif 00022 //________________________ 00023 dummyV0Cut::dummyV0Cut(){ 00024 mNpassed = mNfailed = 0; 00025 } 00026 //________________________ 00027 bool dummyV0Cut::Pass(const StHbtV0* v0) 00028 { 00029 mNpassed++; 00030 return (true); 00031 } 00032 //________________________ 00033 StHbtString dummyV0Cut::Report() 00034 { 00035 return "dummyV0Cut\n"; 00036 } 00037 //________________________ 00038
1.5.9