]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FEMTOSCOPY/AliFemto/AliFemtoCutMonitor.cxx
V0 rescaling in MC and multiple bins in correct.C
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / AliFemtoCutMonitor.cxx
1 ////////////////////////////////////////////////////////////////////////////////
2 //                                                                            //
3 // AliFemtoCutMonitor - the  base class for cut monitor                       //
4 // A cut monitor saves the entities that passed and failed the given cut      //
5 //                                                                            //
6 ////////////////////////////////////////////////////////////////////////////////
7 #include "AliFemtoCutMonitor.h"
8
9 inline void AliFemtoCutMonitor::EventBegin(const AliFemtoEvent* /* aEvent */ ) 
10 { /* no-op */ }
11
12 inline void AliFemtoCutMonitor::EventEnd(const AliFemtoEvent* /* aEvent */ ) 
13 { /* no-op */ }
14
15 inline void AliFemtoCutMonitor::Fill(const AliFemtoEvent* /* aEvent */) { 
16   // cut event
17 #ifdef STHBTDEBUG
18     cout << " *** no user defined Fill(const AliFemtoEvent*), take from base class" << endl;
19 #endif
20   }
21
22 inline void AliFemtoCutMonitor::Fill(const AliFemtoTrack* /* aTrack */) { 
23   // cut track
24 #ifdef STHBTDEBUG
25   cout << " *** no user defined Fill(const AliFemtoTrack*), take from base class" << endl;
26 #endif
27 }
28
29 inline void AliFemtoCutMonitor::Fill(const AliFemtoV0* /* aV0 */ ) { 
30   // cut V0
31 #ifdef STHBTDEBUG
32   cout << " *** no user defined Fill(const AliFemtoV0Track*), take from base class" << endl;
33 #endif
34 }
35 inline void AliFemtoCutMonitor::Fill(const AliFemtoKink* /* aKink */) { 
36   // cut Kink
37 #ifdef STHBTDEBUG
38   cout << " *** no user defined Fill(const AliFemtoKink*), take from base class" << endl;
39 #endif
40 }
41  
42 //-----------------------------------Gael 12/04/02------------------------------------
43 inline void AliFemtoCutMonitor::Fill(const AliFemtoPair* /* aPair */) { 
44   // cut pair
45 #ifdef STHBTDEBUG
46   cout << " *** no user defined Fill(const AliFemtoPair*), take from base class" << endl;
47 #endif
48 }
49 //-----------------------------------Gael 19/06/02------------------------------------
50 inline void AliFemtoCutMonitor::Fill(const AliFemtoParticleCollection* /* aCollection */) {
51   // cut particle collection
52 #ifdef STHBTDEBUG
53   cout << " *** no user defined Fill(const AliFemtoParticleCollection*), take from base class" << endl;
54 #endif
55 }
56 //-----------------------------------Gael 19/06/02------------------------------------
57 inline void AliFemtoCutMonitor::Fill(const AliFemtoEvent* /* aEvent */,const AliFemtoParticleCollection* /* aCollection */) {
58   // cut event and particle collection
59 #ifdef STHBTDEBUG
60   cout << " *** no user defined Fill(const AliFemtoEvent*,const AliFemtoParticleCollection*), take from base class" << endl;
61 #endif
62 }
63