1 /***************************************************************************
5 * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu
6 ***************************************************************************
8 * Description: part of STAR HBT Framework: AliFemtoMaker package
9 * a do-nothing pair cut that simply says "true" to every pair
11 ***************************************************************************
14 * Revision 1.1.1.1 2007-03-07 10:14:49 mchojnacki
15 * First version on CVS
17 * Revision 1.3 2000/01/25 17:35:02 laue
18 * I. In order to run the stand alone version of the AliFemtoMaker the following
19 * changes have been done:
20 * a) all ClassDefs and ClassImps have been put into #ifdef __ROOT__ statements
21 * b) unnecessary includes of StMaker.h have been removed
22 * c) the subdirectory AliFemtoMaker/doc/Make has been created including everything
23 * needed for the stand alone version
25 * II. To reduce the amount of compiler warning
26 * a) some variables have been type casted
27 * b) some destructors have been declared as virtual
29 * Revision 1.2 1999/07/06 22:33:21 lisa
30 * Adjusted all to work in pro and new - dev itself is broken
32 * Revision 1.1.1.1 1999/06/29 16:02:56 lisa
33 * Installation of AliFemtoMaker
35 **************************************************************************/
37 #include "Cut/AliFemtoDummyPairCut.h"
42 ClassImp(AliFemtoDummyPairCut)
46 AliFemtoDummyPairCut::AliFemtoDummyPairCut(){
47 fNPairsPassed = fNPairsFailed = 0;
50 //AliFemtoDummyPairCut::~AliFemtoDummyPairCut(){
54 bool AliFemtoDummyPairCut::Pass(const AliFemtoPair* pair){
56 temp ? fNPairsPassed++ : fNPairsFailed++;
60 AliFemtoString AliFemtoDummyPairCut::Report(){
61 string Stemp = "AliFemtoDummy Pair Cut - total dummy-- always returns true\n";
63 sprintf(Ctemp,"Number of pairs which passed:\t%ld Number which failed:\t%ld\n",fNPairsPassed,fNPairsFailed);
65 AliFemtoString returnThis = Stemp;