]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONManuContourMaker.cxx
EMD DA updated
[u/mrichter/AliRoot.git] / MUON / AliMUONManuContourMaker.cxx
index 538172af4b05c8ccfbdc9c8ba2dd4fb9a7fe69ba..ccde85dd82fbc0ffefbafe589dc50446c43a09b9 100644 (file)
@@ -62,12 +62,15 @@ ClassImp(AliMUONManuContourMaker)
 AliMUONManuContourMaker::AliMUONManuContourMaker(AliMpExMap* deTransformations)
 : TObject(), fDETransformations(deTransformations), fLocalManuContours(222,1)
 {
+/// Standard constructor
+
   fLocalManuContours.SetOwnerKeyValue(kTRUE,kTRUE);  
 }
 
 //_____________________________________________________________________________
 AliMUONManuContourMaker::~AliMUONManuContourMaker()
 {
+/// Destructor
 }
 
 //_____________________________________________________________________________
@@ -76,7 +79,7 @@ AliMUONManuContourMaker::CreateManuContour(Int_t detElemId, Int_t manuId, const
 {
   /// Create the contour of a given manu (global coordinates)
  
-  AliCodeTimerAuto("");
+  AliCodeTimerAuto("",0);
   
   TString sname(name);
   
@@ -119,7 +122,7 @@ AliMUONManuContourMaker::CreateMotifContour(const AliMpMotifPosition& motifPosit
 {
   /// Create the contour of a given MOTIF (i.e. local coordinates only).
   
-  AliCodeTimerAuto("");
+  AliCodeTimerAuto("",0);
   
   TString mpName(NameIt(motifPosition));
   
@@ -183,7 +186,7 @@ AliMUONManuContourMaker::CreateMotifContour(const AliMpMotifPosition& motifPosit
   }
   
   {
-    AliCodeTimerAuto("localmanucontour.add");
+    AliCodeTimerAuto("localmanucontour.add",1);
     fLocalManuContours.Add(new TObjString(mpName),contour);
   }
   
@@ -198,7 +201,7 @@ AliMUONManuContourMaker::GenerateManuContours(Bool_t stopAtError)
   /// (to go from local to global). That transformation need not be the real one (i.e.
   /// it can be an "exploded" one to ease visualization).
   
-  AliCodeTimerAuto("");
+  AliCodeTimerAuto("",0);
   
   TObjArray* manuContours = new TObjArray;
   
@@ -227,7 +230,7 @@ AliMUONManuContourMaker::GenerateManuContours(Bool_t stopAtError)
     ++nok;
   }
   
-  AliInfo(Form("%d manus. %d contours successfully created",nmanus,nok));
+  AliDebug(1,Form("%d manus. %d contours successfully created",nmanus,nok));
   
   return manuContours;
 }