]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/trigger/AliHLTD0Trigger.h
added more options to run D0 finder from offline or online data (Gaute)
[u/mrichter/AliRoot.git] / HLT / trigger / AliHLTD0Trigger.h
1 //-*- Mode: C++ -*-
2 // $Id: AliHLTD0Trigger.h 
3 #ifndef ALIHLTD0TRIGGER_H
4 #define ALIHLTD0TRIGGER_H
5 //* This file is property of and copyright by the ALICE HLT Project        * 
6 //* ALICE Experiment at CERN, All rights reserved.                         *
7 //* See cxx source for full Copyright notice                               *
8
9 /// @file   AliHLTD0Trigger.h
10 /// @author Gaute Ovrebekk
11 /// @date   2009-10-28
12 /// @brief  HLT trigger component for D0->Kpi
13
14 #include "AliHLTTrigger.h"
15 #include <vector>
16 #include "AliESDtrack.h"
17
18 class TH1F;
19 class TObjArray;
20 class AliHLTD0toKpi;
21
22 /**
23  * @class  AliHLTD0Trigger
24  *
25  * HLT trigger component for D0->Kpi
26  *
27  * <h2>General properties:</h2>
28  *
29  * Component ID: \b D0Trigger                             <br>
30  * Library: \b libAliHLTTrigger.so                                        <br>
31  * Input Data Types:  kAliHLTDataTypeESDObject, kAliHLTDataTypeESDTree
32  *                    kAliHLTDataTypeTrack                                <br>
33  * Output Data Types: ::kAliHLTAnyDataType                                <br>
34  *
35  * <h2>Mandatory arguments:</h2>
36  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
37  *
38  * <h2>Optional arguments:</h2>
39  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
40  *
41  * <h2>Configuration:</h2>
42  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
43  * \li -pt    <i> pt cut for decay products </i> <br>
44  * \li -dca    <i> dca cut for distance between decay tracks  </i> <br>
45  * \li -invmass    <i> inv. mass half width of D0  </i> <br>
46  * \li -costhetastar    <i> cos of decay angle  </i> <br>
47  * \li -d0    <i> Impact parameter for decay products  </i> <br>
48  * \li -d0d0    <i> Product of impact parameter for decay products  </i> <br>
49  * \li -cospoint    <i> pointing angle  </i> <br>
50  * \li -plothistogram    <i> ploting the inv. mass histogram  </i> <br>
51  *
52  * By default, configuration is loaded from OCDB, can be overridden by
53  * component arguments.
54  *
55  * <h2>Default CDB entries:</h2>
56  * HLT/ConfigHLT/D0Trigger: TObjString storing the arguments
57  *
58  * <h2>Performance:</h2>
59  * 
60  *
61  * <h2>Memory consumption:</h2>
62  * 
63  *
64  * <h2>Output size:</h2>
65  * 
66  *
67  * \ingroup alihlt_trigger_components
68  */
69 class AliHLTD0Trigger : public AliHLTTrigger
70 {
71  public:
72   AliHLTD0Trigger();
73   ~AliHLTD0Trigger();
74
75   /// inherited from AliHLTTrigger: name of this trigger
76   virtual const char* GetTriggerName() const;
77   /// inherited from AliHLTComponent: create an instance
78   virtual AliHLTComponent* Spawn();
79
80  protected:
81   /// inherited from AliHLTComponent: handle the initialization
82   int DoInit(int argc, const char** argv);
83
84   /// inherited from AliHLTComponent: handle cleanup
85   int DoDeinit();
86
87   /// inherited from AliHLTComponent: handle re-configuration event
88   int Reconfigure(const char* cdbEntry, const char* chainId);
89
90   /// inherited from AliHLTComponent, scan one argument and
91   /// its parameters
92   int ScanConfigurationArgument(int argc, const char** argv);
93
94  private:
95   /// Not implemented. Do not allow copying of this object.
96   AliHLTD0Trigger(const AliHLTD0Trigger& );
97   /// Not implemented. Do not allow copying of this object.
98   AliHLTD0Trigger& operator=(const  AliHLTD0Trigger& );
99
100   /// inherited from AliHLTTrigger: calculate the trigger
101   virtual int DoTrigger();
102
103   void SingleTrackSelect(AliESDtrack*,Double_t,Double_t*);
104   Int_t RecESDTracks(const TObject* iter);
105   Int_t RecV0(const TObject* iter);
106   Int_t RecBarrelTracks(const TObject* iter);
107
108   /// pt cut for decay, minimum [GeV/c]
109   float fPtMin;                                            //! transient
110   /// Distance between decay tracks [cm] ??
111   float fdca;                                              //! transient
112   /// Inv. mass half width [GeV]
113   float finvMass;                                          //! transient
114   /// Decay angle
115   float fcosThetaStar;                                     //! transient  
116   /// Distance from primary vertex for decay tracks [cm] 
117   float fd0;                                               //! transient
118   /// Product of d0 for the two decay tracks [cm^2]
119   float fd0d0;                                             //! transient
120   /// Pionting angle
121   float fcosPoint;                                         //! transient 
122
123   bool fplothisto;                                         //! transient 
124   bool fUseV0;                                             //! transient 
125
126   Double_t mD0PDG;                                         //! transient
127
128   /// D0 inv. mass plot
129   TH1F *fD0mass;                                           //! transient  
130
131   vector<AliESDtrack*> fPos;                                //! transient
132   vector<AliESDtrack*> fNeg;                                //! transient
133
134   AliHLTD0toKpi *fd0calc;                                    //! transient
135   TObjArray *ftwoTrackArray;                                 //! transient
136
137   Int_t fTotalD0;                                            //! transient
138
139   /// the default configuration entry for this component
140   static const char* fgkOCDBEntry; //!transient
141
142   ClassDef(AliHLTD0Trigger, 0)
143 };
144 #endif //ALIHLTD0TRIGGER_H