]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/trigger/AliHLTTriggerBarrelGeomMultiplicity.cxx
adding class for storage and transport of D0 candidates (Gaute)
[u/mrichter/AliRoot.git] / HLT / trigger / AliHLTTriggerBarrelGeomMultiplicity.cxx
1 // $Id$
2 //**************************************************************************
3 //* This file is property of and copyright by the ALICE HLT Project        * 
4 //* ALICE Experiment at CERN, All rights reserved.                         *
5 //*                                                                        *
6 //* Primary Authors: Oystein Djuvsland                                     *
7 //*                  for The ALICE HLT Project.                            *
8 //*                                                                        *
9 //* Permission to use, copy, modify and distribute this software and its   *
10 //* documentation strictly for non-commercial purposes is hereby granted   *
11 //* without fee, provided that the above copyright notice appears in all   *
12 //* copies and that both the copyright notice and this permission notice   *
13 //* appear in the supporting documentation. The authors make no claims     *
14 //* about the suitability of this software for any purpose. It is          *
15 //* provided "as is" without express or implied warranty.                  *
16 //**************************************************************************
17
18 /// @file   AliHLTTriggerBarrelGeomMultiplicity.cxx
19 /// @author Oystein Djuvsland
20 /// @date   2009-10-08
21 /// @brief  HLT trigger component for charged particle multiplicity 
22 ///         within a geometrical acceptance in the central barrel.
23
24 // see header file for class documentation
25 // or
26 // refer to README to build package
27 // or
28 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
29
30 #include "AliHLTTriggerBarrelGeomMultiplicity.h"
31 #include "AliHLTTriggerDetectorGeom.h"
32 #include "AliHLTTriggerDecisionParameters.h"
33 #include "AliESDEvent.h"
34 #include "AliHLTTriggerDecision.h"
35 #include "AliHLTDomainEntry.h"
36 #include "AliHLTGlobalBarrelTrack.h"
37 #include "TObjArray.h"
38 #include "TObjString.h"
39 #include "AliCDBEntry.h"
40 #include "AliCDBManager.h"
41 #include "TFile.h"
42 #include "AliHLTTrigger.h"
43
44 /** ROOT macro for the implementation of ROOT specific class methods */
45 ClassImp(AliHLTTriggerBarrelGeomMultiplicity)
46
47 AliHLTTriggerBarrelGeomMultiplicity::AliHLTTriggerBarrelGeomMultiplicity()
48   : AliHLTTrigger()
49   , fSolenoidBz(0)
50   , fMinTracks(1)
51   , fDetectorArray(0)
52   , fTriggerDecisionPars(0)
53   , fTriggerName(0)
54   , fOCDBEntry(0)
55 {
56   // see header file for class documentation
57   // or
58   // refer to README to build package
59   // or
60   // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
61
62   fDetectorArray = new TObjArray;
63
64 }
65
66 AliHLTTriggerBarrelGeomMultiplicity::~AliHLTTriggerBarrelGeomMultiplicity()
67 {
68   // see header file for class documentation
69
70   if (fDetectorArray != NULL) delete fDetectorArray;
71 }
72
73 const char* AliHLTTriggerBarrelGeomMultiplicity::GetTriggerName() const 
74 {
75   // see header file for class documentation
76
77   return "BarrelGeomMultiplicityTrigger";
78 }
79
80 AliHLTComponent* AliHLTTriggerBarrelGeomMultiplicity::Spawn()
81 {
82   // see header file for class documentation
83   return new AliHLTTriggerBarrelGeomMultiplicity;
84 }
85
86 int AliHLTTriggerBarrelGeomMultiplicity::Reconfigure(const char *cdbEntry, const char *chainId)
87 {
88   // see header file for class documentation
89
90   // configure from the specified entry or the default
91   const char* entry=cdbEntry;
92
93   if (!entry)
94     {
95       HLTDebug("No CDB path specified");
96       entry = fOCDBEntry; 
97     }
98
99   return GetDetectorGeomsFromCDBObject(entry, chainId);
100
101
102 int AliHLTTriggerBarrelGeomMultiplicity::DoTrigger()
103 {
104   // see header file for class documentation
105   int iResult=0;
106   int numberOfTracks=-1;
107
108   if (!fTriggerDecisionPars) {
109     iResult=-ENODEV;
110   }
111
112   // try the ESD as input
113   const TObject* obj = GetFirstInputObject(kAliHLTAllDataTypes, "AliESDEvent");
114   AliESDEvent* esd = dynamic_cast<AliESDEvent*>(const_cast<TObject*>(obj));
115   TString description;
116
117   if (esd != NULL) 
118     {
119       numberOfTracks=0;
120       esd->GetStdContent();
121       for (Int_t i = 0; i < esd->GetNumberOfTracks(); i++) 
122         {
123           if (CheckCondition(esd->GetTrack(i), esd->GetMagneticField())) numberOfTracks++;
124         }
125     }
126
127   // try the AliHLTExternal track data as input
128   if (iResult>=0 && numberOfTracks<0) 
129     {
130       for (const AliHLTComponentBlockData* pBlock=GetFirstInputBlock(kAliHLTDataTypeTrack);
131            pBlock!=NULL; pBlock=GetNextInputBlock()) 
132         {
133           if (numberOfTracks<0) numberOfTracks=0;
134           vector<AliHLTGlobalBarrelTrack> tracks;
135           if ((iResult=AliHLTGlobalBarrelTrack::ConvertTrackDataArray(reinterpret_cast<const AliHLTTracksData*>(pBlock->fPtr), pBlock->fSize, tracks))>0) 
136             {
137               for (vector<AliHLTGlobalBarrelTrack>::iterator element=tracks.begin();
138                    element!=tracks.end(); element++) 
139                 {
140                   if (CheckCondition(&(*element), fSolenoidBz)) numberOfTracks++;
141                 }
142             } 
143           else if (iResult<0) 
144             {
145               HLTError("can not extract tracks from data block of type %s (specification %08x) of size %d: error %d", 
146                        DataType2Text(pBlock->fDataType).c_str(), pBlock->fSpecification, pBlock->fSize, iResult);
147             }
148         }
149     }
150
151   bool condition=false;
152   description="Geometrical conditions not matched";
153   AliHLTReadoutList readout;
154
155   if (numberOfTracks>=fMinTracks) 
156     {
157       condition=true;
158       description=fTriggerDecisionPars->GetDescription();
159       readout=fTriggerDecisionPars->GetReadoutListParameter();
160       HLTDebug("Geometrical acceptance trigger %s triggered", fTriggerDecisionPars->GetTriggerName().Data());
161     }
162
163   AliHLTTriggerDecision decision(
164                                  condition,
165                                  fTriggerDecisionPars->GetTriggerName().Data(),
166                                  AliHLTTriggerDomain(readout),
167                                  description.Data()
168                                  );
169   TriggerEvent(&decision, kAliHLTDataTypeTObject|kAliHLTDataOriginOut);
170
171   return iResult;
172
173 }
174
175
176 template<class T>
177 bool AliHLTTriggerBarrelGeomMultiplicity::CheckCondition(T* track, float b)
178 {
179
180   bool ret = false;
181
182   // see header file for class documentation
183   if (!track) return false;
184
185   ret = IsInDetectors(track, b);
186
187   return ret;
188
189 }
190
191 template<class T>
192 bool AliHLTTriggerBarrelGeomMultiplicity::IsInDetectors(T* track, float b)
193 {
194   // See header file for class documentation  
195   for(Int_t i = 0; i < fDetectorArray->GetEntries(); i++)
196     {
197       AliHLTTriggerDetectorGeom *det = static_cast<AliHLTTriggerDetectorGeom*>(fDetectorArray->At(i));
198
199       Double_t trackPoint[3];
200       Double_t normVector[3];
201
202       det->GetInitialPoint(trackPoint);
203       det->GetNormVector(normVector);
204
205       bool ret = track->Intersect(trackPoint, normVector, b);
206
207       if(ret)
208         {
209           if(det->IsInDetector(trackPoint)) return true;
210         }
211     }
212   return false;
213 }
214
215 int AliHLTTriggerBarrelGeomMultiplicity::DoInit(int argc, const char** argv)
216 {
217   // see header file for class documentation
218
219   // first configure the default
220   int iResult=0;
221
222   if (iResult>=0 && argc>0)
223     iResult=ConfigureFromArgumentString(argc, argv);
224
225   if (!fTriggerDecisionPars) {
226     HLTError("decision parameter not initialized");
227     iResult=-ENODEV;
228   }
229   fSolenoidBz=GetBz();
230
231   return iResult;
232 }
233
234 int AliHLTTriggerBarrelGeomMultiplicity::DoDeinit()
235  {
236   // see header file for class documentation
237   return 0;
238 }
239
240 int AliHLTTriggerBarrelGeomMultiplicity::ReadPreprocessorValues(const char* /*modules*/)
241 {
242     // see header file for function documentation
243
244   // nothing to do for the moment
245   return 0;
246 }
247
248 int AliHLTTriggerBarrelGeomMultiplicity::GetDetectorGeomsFromCDBObject(const char *cdbEntry, const char* chainId)
249 {
250     // see header file for function documentation
251   int nDetectorGeoms=0;
252
253   if(fDetectorArray)
254     {
255       fDetectorArray->Clear();
256     }
257   else
258     {
259       fDetectorArray = new TObjArray();
260     }
261   
262   const char *path = cdbEntry;
263
264   if(!path) path = fOCDBEntry;
265   
266   if(path)
267     {
268       //     const char* chainId=GetChainId();
269       HLTInfo("configure from entry %s, chain id %s", path, (chainId!=NULL && chainId[0]!=0)?chainId:"<none>");
270       AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(path/*,GetRunNo()*/);
271       if (pEntry) 
272         {
273           TObjArray* pArr=dynamic_cast<TObjArray*>(pEntry->GetObject());
274           if (pArr) 
275             {
276
277               for(int i = 0; i < pArr->GetEntries(); i++)
278                 {
279                   if(!strcmp(pArr->At(i)->ClassName(), "AliHLTTriggerDecisionParameters"))
280                     {
281                       fTriggerDecisionPars = dynamic_cast<AliHLTTriggerDecisionParameters*>(pArr->At(i));
282                     }
283                   else if(pArr->At(i)->InheritsFrom("AliHLTTriggerDetectorGeom"))
284                     {
285                       fDetectorArray->AddLast(dynamic_cast<AliHLTTriggerDetectorGeom*>(pArr->At(i)));
286                       nDetectorGeoms++;
287                       HLTDebug("received detector geometry of type %s", pArr->At(i)->ClassName());
288                     }
289                   else
290                     {
291                       HLTWarning("Unknown object of type %s in configuration object", pArr->At(i)->ClassName());
292                     }
293                 }
294             } 
295           else 
296             {
297               HLTError("configuration object \"%s\" has wrong type, required TObjArray", path);
298               nDetectorGeoms=-EINVAL;
299             }
300         }
301       else 
302         {
303           HLTError("can not fetch object \"%s\" from OCDB", path);
304           nDetectorGeoms=-ENOENT;
305         }
306     }
307
308   HLTInfo("received %d detector geometries", nDetectorGeoms);
309
310   return nDetectorGeoms;
311 }
312
313 int AliHLTTriggerBarrelGeomMultiplicity::GetDetectorGeomsFromFile(const char *filename)
314 {
315     // see header file for function documentation
316   int nDetectorGeoms=0;
317
318   if(fDetectorArray)
319     {
320       fDetectorArray->Clear();
321     }
322   else
323     {
324       fDetectorArray = new TObjArray();
325     }
326   
327
328   if (filename) 
329     {
330       TFile *geomfile = TFile::Open(filename, "READ");
331       
332       if(geomfile)
333         {
334           HLTInfo("configure from file \"%s\"", filename);
335           TObjArray* pArr=dynamic_cast<TObjArray*>(geomfile->Get("GeomConf"));
336           if (pArr) 
337             {
338
339               for(int i = 0; i < pArr->GetEntries(); i++)
340                 {
341                   if(!strcmp(pArr->At(i)->ClassName(), "AliHLTTriggerDecisionParameters"))
342                     {
343                       fTriggerDecisionPars = dynamic_cast<AliHLTTriggerDecisionParameters*>(pArr->At(i));
344                     }
345                   else if(pArr->At(i)->InheritsFrom("AliHLTTriggerDetectorGeom"))
346                     {
347                       fDetectorArray->AddLast(dynamic_cast<AliHLTTriggerDetectorGeom*>(pArr->At(i)));
348                       nDetectorGeoms++;
349                       HLTDebug("received detector geometry of type %s", pArr->At(i)->ClassName());
350                     }
351                   else
352                     {
353                       HLTWarning("Unknown object of type %s in configuration object", pArr->At(i)->ClassName());
354                     }
355                 }
356             } 
357           else 
358             {
359               HLTError("configuration object has wrong type, required TObjArray");
360               nDetectorGeoms=-EINVAL;
361             }
362           } 
363       else 
364         {
365           HLTError("could not open file \"%s\"", filename);
366           nDetectorGeoms=-ENOENT;
367         }
368     }
369   else
370     {
371       HLTError("ROOT file name not specified");
372     }
373   HLTInfo("received %d detector geometries", nDetectorGeoms);
374
375   return nDetectorGeoms;
376 }
377
378 int AliHLTTriggerBarrelGeomMultiplicity::ScanConfigurationArgument(int argc, const char** argv)
379 {
380   // See header file for class documentation
381   if (argc<=0) return 0;
382   int i=0;
383   TString argument=argv[i];
384
385   if (argument.CompareTo("-geomfile")==0) 
386     {
387       if (++i>=argc) return -EPROTO;
388     
389       GetDetectorGeomsFromFile(argv[i]);
390     
391       return 2;
392     }    
393
394   if (argument.CompareTo("-triggername")==0) 
395     {
396       if (++i>=argc) return -EPROTO;
397       
398       fTriggerName = new char[128];
399       sprintf(fTriggerName, "%s", argv[i]);
400       
401       fOCDBEntry = fTriggerName;
402
403       return 2;
404   }    
405   return 0;
406 }
407