AliPhysics  8dc8609 (8dc8609)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliRelAlignerKalmanArray.h
Go to the documentation of this file.
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice */
3 
5 //
6 // Data container for relative ITS-TPC alignment analysis
7 // see info in the implementation file
8 //
9 // Origin: Mikolaj Krzewicki, Nikhef, Mikolaj.Krzewicki@cern.ch
10 //
12 
13 class TObjArray;
14 class TGraphErrors;
15 class TNamed;
16 class TTree;
17 class TCollection;
18 class AliESDEvent;
19 class TBrowser;
20 class TList;
21 #include <AliRelAlignerKalman.h>
22 
24 {
25 public:
27  AliRelAlignerKalmanArray(Int_t t0, Int_t tend, Int_t slotwidth);
28  virtual ~AliRelAlignerKalmanArray();
31  void SetupArray(Int_t t0, Int_t tend, Int_t slotwidth);
32 
33  AliRelAlignerKalman* GetAligner(UInt_t timestamp);
34  AliRelAlignerKalman* GetAligner(AliESDEvent* event);
35  AliRelAlignerKalman* GetAlignerTemplate();
36  Long64_t Merge( TCollection* list );
37  AliRelAlignerKalman* At( Int_t i ) const;
38  AliRelAlignerKalman* operator[](Int_t i) const;
39  AliRelAlignerKalman*& operator[](Int_t i);
40  Int_t GetEntries() const;
41  Int_t GetSize() const {return fSize;}
42  AliRelAlignerKalman* Last() const;
43  UInt_t GetT0() const {return fT0;}
45  Int_t Timebin( UInt_t timestamp ) const;
46  virtual void Print(Option_t* option="") const;
47  void FillTree( TTree* tree )const ;
48  TGraphErrors* MakeGraph(Int_t iparam) const;
52  void Browse(TBrowser *b);
53 
54 private:
55  void ClearContents();
56  void PropagateToTime(AliRelAlignerKalman* al, UInt_t timestamp ) const;
57 
58  UInt_t fT0; //time of first time slot
59  Int_t fTimebinWidth; //width of the time bin in seconds
60  Int_t fSize; //size
61  Double_t fOutRejSigmaOnMerge; //how much outlier rejection on merge
62  Double_t fOutRejSigmaOnSmooth; //how much outlier rejection on Smooth
63  AliRelAlignerKalman fAlignerTemplate; //template
64  AliRelAlignerKalman** fPArray; //[fSize] an array of aligners
66 
67  ClassDef(AliRelAlignerKalmanArray,5); //AliRelAlignerKalman class
68 };
69 
70 
double Double_t
Definition: External.C:58
Int_t Timebin(UInt_t timestamp) const
AliRelAlignerKalman * operator[](Int_t i) const
AliRelAlignerKalman * GetAligner(UInt_t timestamp)
long long Long64_t
Definition: External.C:43
Long64_t Merge(TCollection *list)
AliRelAlignerKalman ** fPArray
void SetupArray(Int_t t0, Int_t tend, Int_t slotwidth)
int Int_t
Definition: External.C:63
unsigned int UInt_t
Definition: External.C:33
virtual void Print(Option_t *option="") const
AliRelAlignerKalmanArray * MakeSmoothArray() const
TGraphErrors * MakeGraph(Int_t iparam) const
AliRelAlignerKalman fAlignerTemplate
void FillTree(TTree *tree) const
void PropagateToTime(AliRelAlignerKalman *al, UInt_t timestamp) const
AliRelAlignerKalman * At(Int_t i) const
AliRelAlignerKalmanArray & operator=(const AliRelAlignerKalmanArray &a)
AliRelAlignerKalman * GetAlignerTemplate()
AliRelAlignerKalman * Last() const
const char Option_t
Definition: External.C:48