]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ANALYSIS/AliAODParticleBaseCut.cxx
Bugfix (thanks to Matevz for finding it)
[u/mrichter/AliRoot.git] / ANALYSIS / AliAODParticleBaseCut.cxx
index f1bfb7a56087c248b9dd3e92199423a9ed0ebcde..226779892ed14a68b69b03ffdca0f788d19883d2 100644 (file)
@@ -1,11 +1,32 @@
 #include "AliAODParticleBaseCut.h"
-
+//__________________________________________________________________________
+////////////////////////////////////////////////////////////////////////////
+//                                                                        //
+// class AliAODParticleBaseCut                                            //
+//                                                                        //
+// Set of classes for performing cuts on particle properties of           //
+// AliAODParticleBaseCut is a base class for "base                        //
+// particle cuts". Further, there are implemented classes that performs   //
+// cuts on the most common particle properties like pt, pseudo rapidity,  //
+// angles, anergy, etc.                                                   //
+//                                                                        //
+// There are also implemeted base cuts that perform logical operations    //
+// on results of base particle cuts: AliAODOrCut and  AliAODAndCut.       //
+//                                                                        //
+// Each base cut has a property, thet allows to distinguish them.         //
+// This functionality is used by the interface methods of Particle Cut    //
+// that allows easy update ranges.                                        //
+//                                                                        //
+// more info: http://aliweb.cern.ch/people/skowron/analyzer/index.html    //
+// responsible: Piotr Skowronski@cern.ch                                  //
+//                                                                        //
+////////////////////////////////////////////////////////////////////////////
 
 
 #include <Riostream.h>
 
 ClassImp(AliAODParticleBaseCut)
-void AliAODParticleBaseCut::Print(void) const
+  void AliAODParticleBaseCut::Print(const Option_t * /*opt*/) const
 {
   // prints the information anout the base cut to stdout
   cout<<"fMin="<<fMin <<", fMax=" <<fMax<<"    ";
@@ -70,7 +91,7 @@ ClassImp( AliAODVzCut )
 
 ClassImp( AliAODPIDCut )
 
-void AliAODPIDCut::Print(void) const
+void AliAODPIDCut::Print(const Option_t * /*opt*/) const
 {
   cout<<"PID "<<fPID<<" ";
   AliAODParticleBaseCut::Print();