]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFDigitizer.cxx
Removing the fake copy constructors and assignment operator, moving their declaration...
[u/mrichter/AliRoot.git] / TOF / AliTOFDigitizer.cxx
index 3bd9f41c629fedf1860aea56a8ab436c6274320f..b302981fc2a21bf87ef80892582147934ce951e5 100644 (file)
 //                                                                         //
 //_________________________________________________________________________//
 
-#include "Riostream.h"
+#include <Riostream.h>
 
-#include "TFile.h"
-#include "TH1F.h"
-#include "TTree.h"
+#include <TFile.h>
+#include <TH1F.h>
+#include <TTree.h>
+#include <TRandom.h>
 
 #include "AliLoader.h"
 #include "AliLog.h"
 #include "AliTOFSDigit.h"
 #include "AliTOF.h"
 
-extern TDirectory *gDirectory;
-extern TFile *gFile;
-extern TRandom *gRandom;
-
-extern AliRun *gAlice;
-
-
 ClassImp(AliTOFDigitizer)
 
 //___________________________________________
@@ -415,7 +409,7 @@ void AliTOFDigitizer::DecalibrateTOFSignal( AliTOFcalib *calib){
 
   AliTOFCal * cal= calib->GetTOFCalSimArray();
 
-  AliInfo(Form("Size of AliTOFCal = %i",cal->NPads()));
+  AliDebug(2,Form("Size of AliTOFCal = %i",cal->NPads()));
   for (Int_t ipad = 0 ; ipad<cal->NPads(); ipad++){
     AliTOFChannel *calChannel = cal->GetChannel(ipad);
     Float_t par[6];
@@ -504,9 +498,9 @@ void AliTOFDigitizer::DecalibrateTOFSignal( AliTOFcalib *calib){
   }
 
   if(hToT->GetEntries()<=0 || !dbEntry){
-    AliInfo("Standard Production, no miscalibrated digits");   
+    AliDebug(1,"Standard Production, no miscalibrated digits");   
   }else{
-    AliInfo("Miscalibrated digits");   
+    AliDebug(1,"Miscalibrated digits");   
   }
 
   return;