]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONAlignmentTask.h
Disable test of requested CDB objects similarity in sim and rec in case the sim has...
[u/mrichter/AliRoot.git] / MUON / AliMUONAlignmentTask.h
index 6b5a769fa6bd1af76bdfba42e5ab5c0d0739e8eb..c921a76b5e76fc35683452aa9a6d1350ada6a15b 100644 (file)
 //  Author Javier Castillo, CEA/Saclay - Irfu/SPhN
 
 class TList;
+class TString;
 class TGraphErrors;
-class AliESDEvent;
+class TClonesArray;
 class AliMUONAlignment;
 class AliMUONGeometryTransformer;
 
-#include "AliAnalysisTask.h"
+#include "AliAnalysisTaskSE.h"
 
-class AliMUONAlignmentTask : public AliAnalysisTask {
- public:
-  //  AliMUONAlignmentTask(const char *name = "AliMUONAlignmentTask");
-  AliMUONAlignmentTask(const char *name = "AliMUONAlignmentTask", const char *geofilename = "geometry.root");
+class AliMUONAlignmentTask : public AliAnalysisTaskSE
+{
+
+  public:
+
+
+  /// constructor
+  AliMUONAlignmentTask(const char *name = "AliMUONAlignmentTask", const char *newalignocdb = "local://ReAlignOCDB", const char *oldalignocdb = "none", const char *defaultocdb = "raw://", const char *geofilename = "geometry.root");
+
+  /// copy constructor
   AliMUONAlignmentTask(const AliMUONAlignmentTask& obj);
-  AliMUONAlignmentTask& operator=(const AliMUONAlignmentTask& other); 
+
+  /// asignment operator
+  AliMUONAlignmentTask& operator=(const AliMUONAlignmentTask& other);
+
+  /// destructor
   virtual ~AliMUONAlignmentTask();
-  
+
   virtual void   LocalInit();
-  virtual void   ConnectInputData(Option_t *);
-  virtual void   CreateOutputObjects();
-  virtual void   Exec(Option_t *option);
-  virtual void   Terminate(const Option_t*);
-  
- private:
-  AliESDEvent *fESD;                      //!< ESD object
-
-  AliMUONAlignment *fAlign;               ///< The MUON alignment object
-  TString fGeoFilename;                   ///< Geometry file name
-  AliMUONGeometryTransformer *fTransform; ///< MUON geometry transformer
-    
-  Int_t fTrackTot;             ///< Number of track read 
-  Int_t fTrackOk;              ///< Number of track read 
-
-  Double_t fParameters[4*156]; ///< Array of alignment parameters
-  Double_t fErrors[4*156];     ///< Array of alignment parameters errors
-  Double_t fPulls[4*156];      ///< Array of alignment parameters pulls
-
-  TGraphErrors *fMSDEx ;   ///< Graph of translations along x
-  TGraphErrors *fMSDEy ;   ///< Graph of translations along y
-  TGraphErrors *fMSDEz ;   ///< Graph of translations along z
-  TGraphErrors *fMSDEp;    ///< Graph of rotation about z 
-
-  TList   *fList;          ///< list of graphs
-   
-  ClassDef(AliMUONAlignmentTask, 1) // example of analysis
+
+  ///@name flags
+  //@{
+
+  /// perform alignment from alignment records is true. Use ESD tracks otherwise
+  void SetReadRecords( Bool_t value = kTRUE )
+  { fReadRecords = value; }
+
+  /// write alignment records to AOD if true
+  void SetWriteRecords( Bool_t value = kTRUE )
+  { fWriteRecords = value; }
+
+  /// perform alignment (from either tracks or records depending on fReadRecords)
+  void SetDoAlignment( Bool_t value )
+  { fDoAlignment = value; }
+
+  //@}
+
+  /// output data
+  virtual void UserCreateOutputObjects();
+
+  /// per-event method
+  virtual void UserExec(Option_t *option);
+  virtual void NotifyRun();
+
+  /// termination cleanup
+  virtual void Terminate(const Option_t*);
+
+  /// end of task execution
+  virtual void FinishTaskOutput();
+
+  /// Set geoemetry file name
+  void SetGeoFilename(const char* geoFilename)
+  {fGeoFilename = geoFilename;}
+
+  /// Set default ocdb
+  void SetDefaultStorage(const char* defaultOCDB)
+  {fDefaultStorage = defaultOCDB;}
+
+  /// Set mis align ocdb
+  void SetOldAlignStorage(const char* oldalignOCDB)
+  {fOldAlignStorage = oldalignOCDB;}
+
+  /// Set mis align ocdb
+  void SetNewAlignStorage(const char* newalignOCDB)
+  {fNewAlignStorage = newalignOCDB;}
+
+  /// Flag to set OCDB once at first notify
+  void SetLoadOCDBOnce(Bool_t loadOCDBOnce = kTRUE)
+  {fLoadOCDBOnce = loadOCDBOnce;}
+
+  private:
+
+  ///@name flags
+  //@{
+
+  /// perform alignment from alignment records is true. Use ESD tracks otherwise
+  Bool_t fReadRecords;
+
+  /// write alignment records to AOD if true
+  Bool_t fWriteRecords;
+
+  /// perform alignment (from either tracks or records depending on fReadRecords)
+  Bool_t fDoAlignment;
+
+  //@}
+
+  /// The MUON alignment object
+  AliMUONAlignment *fAlign;
+
+  /// Geometry file name
+  TString fGeoFilename;
+
+  /// location of the default OCDB storage
+  TString fDefaultStorage;
+
+  /// location of the OCDB storage where to find old MUON/Align/Data (use the default one if empty)
+  TString fOldAlignStorage;
+
+  /// location of the OCDB storage where to put new MUON/Align/Data (use the default one if empty)
+  TString fNewAlignStorage;
+
+  /// geometry transformer used to recontruct the present data
+  AliMUONGeometryTransformer* fOldGeoTransformer;
+
+  /// new geometry transformer containing the new alignment to be applied
+  AliMUONGeometryTransformer* fNewGeoTransformer;
+
+  Bool_t fLoadOCDBOnce;
+  Bool_t fOCDBLoaded;
+
+  /// Total number of track read
+  Int_t fTrackTot;
+
+  /// Number of tracks used for alignment
+  Int_t fTrackOk;
+
+  /// Last run number
+  Int_t fLastRunNumber;
+
+  /// Array of alignment parameters
+  Double_t fParameters[4*156];
+
+  /// Array of alignment parameters errors
+  Double_t fErrors[4*156];
+
+  /// Array of alignment parameters pulls
+  Double_t fPulls[4*156];
+
+  /// Graph of translations along x
+  TGraphErrors *fMSDEx ;
+
+  /// Graph of translations along y
+  TGraphErrors *fMSDEy ;
+
+  /// Graph of translations along z
+  TGraphErrors *fMSDEz ;
+
+  /// Graph of rotation about z
+  TGraphErrors *fMSDEp;
+
+  /// list of graphs
+  TList *fList;
+
+  /// list of track records
+  TClonesArray *fRecords;
+
+  /// number of records
+  Int_t fRecordCount;
+
+  ClassDef(AliMUONAlignmentTask, 3)
+
 };
 
 #endif
-