]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoCutMonitor.cxx
Split: removed dirs now in AliPhysics
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoCutMonitor.cxx
diff --git a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoCutMonitor.cxx b/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoCutMonitor.cxx
deleted file mode 100644 (file)
index 927de27..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//                                                                            //
-// AliFemtoCutMonitor - the  base class for cut monitor                       //
-// A cut monitor saves the entities that passed and failed the given cut      //
-//                                                                            //
-////////////////////////////////////////////////////////////////////////////////
-#include "AliFemtoCutMonitor.h"
-
-void AliFemtoCutMonitor::EventBegin(const AliFemtoEvent* /* aEvent */ ) 
-{ /* no-op */ }
-
-void AliFemtoCutMonitor::EventEnd(const AliFemtoEvent* /* aEvent */ ) 
-{ /* no-op */ }
-
-void AliFemtoCutMonitor::Fill(const AliFemtoEvent* /* aEvent */) { 
-  // cut event
-#ifdef STHBTDEBUG
-    cout << " *** no user defined Fill(const AliFemtoEvent*), take from base class" << endl;
-#endif
-  }
-
-void AliFemtoCutMonitor::Fill(const AliFemtoTrack* /* aTrack */) { 
-  // cut track
-#ifdef STHBTDEBUG
-  cout << " *** no user defined Fill(const AliFemtoTrack*), take from base class" << endl;
-#endif
-}
-
-void AliFemtoCutMonitor::Fill(const AliFemtoV0* /* aV0 */ ) { 
-  // cut V0
-#ifdef STHBTDEBUG
-  cout << " *** no user defined Fill(const AliFemtoV0Track*), take from base class" << endl;
-#endif
-}
-void AliFemtoCutMonitor::Fill(const AliFemtoKink* /* aKink */) { 
-  // cut Kink
-#ifdef STHBTDEBUG
-  cout << " *** no user defined Fill(const AliFemtoKink*), take from base class" << endl;
-#endif
-}
-//-----------------------------------Gael 12/04/02------------------------------------
-void AliFemtoCutMonitor::Fill(const AliFemtoPair* /* aPair */) { 
-  // cut pair
-#ifdef STHBTDEBUG
-  cout << " *** no user defined Fill(const AliFemtoPair*), take from base class" << endl;
-#endif
-}
-//-----------------------------------Gael 19/06/02------------------------------------
-void AliFemtoCutMonitor::Fill(const AliFemtoParticleCollection* /* aCollection */) {
-  // cut particle collection
-#ifdef STHBTDEBUG
-  cout << " *** no user defined Fill(const AliFemtoParticleCollection*), take from base class" << endl;
-#endif
-}
-//-----------------------------------Gael 19/06/02------------------------------------
-void AliFemtoCutMonitor::Fill(const AliFemtoEvent* /* aEvent */,const AliFemtoParticleCollection* /* aCollection */) {
-  // cut event and particle collection
-#ifdef STHBTDEBUG
-  cout << " *** no user defined Fill(const AliFemtoEvent*,const AliFemtoParticleCollection*), take from base class" << endl;
-#endif
-}
-void AliFemtoCutMonitor::Fill(const AliFemtoParticleCollection* /* aCollection */,const AliFemtoParticleCollection* /* aCollection */) {
-  // cut event and particle collection
-  #ifdef STHBTDEBUG
-  cout << " *** no user defined Fill(const AliFemtoParticleCollection*,const AliFemtoParticleCollection*), take from base class" << endl;
-  #endif
-}