67427ff7 |
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: AliFemtoMaker package |
9 | * a do-nothing pair cut that simply says "true" to every pair |
10 | * |
11 | *************************************************************************** |
12 | * |
13 | * $Log$ |
0215f606 |
14 | * Revision 1.1.1.1 2007/04/25 15:38:41 panos |
15 | * Importing the HBT code dir |
16 | * |
67427ff7 |
17 | * Revision 1.1.1.1 2007/03/07 10:14:49 mchojnacki |
18 | * First version on CVS |
19 | * |
20 | * Revision 1.5 2000/03/23 22:57:28 laue |
21 | * Clone() function implemented |
22 | * |
23 | * Revision 1.4 2000/01/25 17:35:03 laue |
24 | * I. In order to run the stand alone version of the AliFemtoMaker the following |
25 | * changes have been done: |
26 | * a) all ClassDefs and ClassImps have been put into #ifdef __ROOT__ statements |
27 | * b) unnecessary includes of StMaker.h have been removed |
28 | * c) the subdirectory AliFemtoMaker/doc/Make has been created including everything |
29 | * needed for the stand alone version |
30 | * |
31 | * II. To reduce the amount of compiler warning |
32 | * a) some variables have been type casted |
33 | * b) some destructors have been declared as virtual |
34 | * |
35 | * Revision 1.3 1999/10/15 01:57:05 lisa |
36 | * Important enhancement of AliFemtoMaker - implement Franks CutMonitors |
37 | * ---------------------------------------------------------- |
38 | * This means 3 new files in Infrastructure area (CutMonitor), |
39 | * several specific CutMonitor classes in the Cut area |
40 | * and a new base class in the Base area (AliFemtoCutMonitor). |
41 | * This means also changing all Cut Base class header files from .h to .h |
42 | * so we have access to CutMonitor methods from Cint command line. |
43 | * This last means |
44 | * 1) files which include these header files are slightly modified |
45 | * 2) a side benefit: the TrackCuts and V0Cuts no longer need |
46 | * a SetMass() implementation in each Cut class, which was stupid. |
47 | * Also: |
48 | * ----- |
49 | * Include Franks AliFemtoAssociationReader |
50 | * ** None of these changes should affect any user ** |
51 | * |
52 | * Revision 1.2 1999/07/06 22:33:21 lisa |
53 | * Adjusted all to work in pro and new - dev itself is broken |
54 | * |
55 | * Revision 1.1.1.1 1999/06/29 16:02:56 lisa |
56 | * Installation of AliFemtoMaker |
57 | * |
58 | **************************************************************************/ |
59 | |
60 | |
61 | #ifndef AliFemtoDummyPairCut_hh |
62 | #define AliFemtoDummyPairCut_hh |
63 | |
64 | // do I need these lines ? |
65 | //#ifndef StMaker_H |
66 | //#include "StMaker.h" |
67 | //#endif |
68 | |
69 | #include "Base/AliFemtoPairCut.h" |
70 | |
71 | class AliFemtoDummyPairCut : public AliFemtoPairCut{ |
72 | public: |
73 | AliFemtoDummyPairCut(); |
74 | AliFemtoDummyPairCut(const AliFemtoDummyPairCut&); |
75 | //~AliFemtoDummyPairCut(); |
76 | |
77 | virtual bool Pass(const AliFemtoPair*); |
78 | virtual AliFemtoString Report(); |
79 | AliFemtoDummyPairCut* Clone(); |
80 | |
81 | |
82 | private: |
83 | long fNPairsPassed; |
84 | long fNPairsFailed; |
85 | |
86 | #ifdef __ROOT__ |
87 | ClassDef(AliFemtoDummyPairCut, 1) |
88 | #endif |
89 | }; |
90 | |
0215f606 |
91 | inline AliFemtoDummyPairCut::AliFemtoDummyPairCut(const AliFemtoDummyPairCut& c) : AliFemtoPairCut(c), fNPairsPassed(0), fNPairsFailed(0) { /* no-op */ } |
67427ff7 |
92 | inline AliFemtoDummyPairCut* AliFemtoDummyPairCut::Clone() { AliFemtoDummyPairCut* c = new AliFemtoDummyPairCut(*this); return c;} |
93 | |
94 | #endif |