]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoCutMonitor.cxx
Merge branch 'master_patch'
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoCutMonitor.cxx
CommitLineData
76ce4b5b 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
919db3ce 9void AliFemtoCutMonitor::EventBegin(const AliFemtoEvent* /* aEvent */ )
76ce4b5b 10{ /* no-op */ }
11
919db3ce 12void AliFemtoCutMonitor::EventEnd(const AliFemtoEvent* /* aEvent */ )
76ce4b5b 13{ /* no-op */ }
14
919db3ce 15void AliFemtoCutMonitor::Fill(const AliFemtoEvent* /* aEvent */) {
76ce4b5b 16 // cut event
17#ifdef STHBTDEBUG
18 cout << " *** no user defined Fill(const AliFemtoEvent*), take from base class" << endl;
19#endif
20 }
21
919db3ce 22void AliFemtoCutMonitor::Fill(const AliFemtoTrack* /* aTrack */) {
76ce4b5b 23 // cut track
24#ifdef STHBTDEBUG
25 cout << " *** no user defined Fill(const AliFemtoTrack*), take from base class" << endl;
26#endif
27}
28
919db3ce 29void AliFemtoCutMonitor::Fill(const AliFemtoV0* /* aV0 */ ) {
76ce4b5b 30 // cut V0
31#ifdef STHBTDEBUG
32 cout << " *** no user defined Fill(const AliFemtoV0Track*), take from base class" << endl;
33#endif
34}
919db3ce 35void AliFemtoCutMonitor::Fill(const AliFemtoKink* /* aKink */) {
76ce4b5b 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------------------------------------
919db3ce 43void AliFemtoCutMonitor::Fill(const AliFemtoPair* /* aPair */) {
76ce4b5b 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------------------------------------
919db3ce 50void AliFemtoCutMonitor::Fill(const AliFemtoParticleCollection* /* aCollection */) {
76ce4b5b 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------------------------------------
919db3ce 57void AliFemtoCutMonitor::Fill(const AliFemtoEvent* /* aEvent */,const AliFemtoParticleCollection* /* aCollection */) {
76ce4b5b 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}
919db3ce 63void AliFemtoCutMonitor::Fill(const AliFemtoParticleCollection* /* aCollection */,const AliFemtoParticleCollection* /* aCollection */) {
973a91f8 64 // cut event and particle collection
65 #ifdef STHBTDEBUG
66 cout << " *** no user defined Fill(const AliFemtoParticleCollection*,const AliFemtoParticleCollection*), take from base class" << endl;
67 #endif
68}