]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
violations fixed
authoralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 9 Jan 2008 06:58:21 +0000 (06:58 +0000)
committeralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 9 Jan 2008 06:58:21 +0000 (06:58 +0000)
T0/AliT0Reconstructor.cxx
T0/AliT0Reconstructor.h

index 897f61573fb5ed2be87e529595f53e6cf3c62b31..a97e77da4ccf007f1269c1a7219426a12b9d835c 100644 (file)
  **************************************************************************/
 
 /* $Id$ */
+/*********************************************************************
+ *  T0 reconstruction and filling ESD
+ *  - reconstruct mean time (interation time) 
+ *  - vertex position
+ *  -  multiplicity
+ ********************************************************************/
 
-#include <Riostream.h>
-
-#include <TDirectory.h>
-
-#include "AliRunLoader.h"
 #include <AliESDEvent.h>
 #include "AliLog.h"
-#include "AliT0Loader.h"
 #include "AliT0RecPoint.h"
 #include "AliRawReader.h"
 #include "AliT0RawReader.h"
 #include "AliT0Reconstructor.h"
 #include "AliT0Parameters.h"
 #include "AliT0Calibrator.h"
-#include "AliCDBLocal.h"
-#include "AliCDBStorage.h"
-#include "AliCDBManager.h"
-#include "AliCDBEntry.h"
 
 #include <TArrayI.h>
 #include <TGraph.h>
@@ -48,6 +44,8 @@ ClassImp(AliT0Reconstructor)
                                             fParam(NULL),
                                             fAmpLEDrec()
 {
+  //constructor
+
  AliDebug(1,"Start reconstructor ");
   
   fParam = AliT0Parameters::Instance();
@@ -131,7 +129,6 @@ void AliT0Reconstructor::Reconstruct(TTree*digitsTree, TTree*clustersTree) const
   fDigits->GetQT0(*chargeQT0);
   fDigits->GetQT1(*chargeQT1);
 
-  cout<<"!!!! AliT0Reconstructor::Reconstruct RefPoint "<<fDigits->RefPoint()<<endl;
   
   Float_t besttimeA=999999;
   Float_t besttimeC=999999;
index 1f696d5b642cb7a42b58eef46ebed76a2033f34b..daf2119d94744f36e8c71a439c6cfa9fe724863b 100644 (file)
@@ -2,13 +2,16 @@
 #define ALIT0RECONSTRUCTOR_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
-/*  Alla Maevskaya INR RAS alla@inr.ru */
-/* $Id$ */
 
+/* $Id$ */
+/******************************************************************** 
+ * header class T0 reconstruction 
+ * Alla Maevskaya INR RAS alla@inr.ru      *
+ * Alla.Maevskaya@cern.ch
+ *******************************************************************/
 
 #include "AliReconstructor.h"
 #include "AliT0Parameters.h"
-#include "AliT0.h"
 
 class AliT0Reconstructor: public AliReconstructor {
  public: