]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliTriggerConfiguration.cxx
Typo fixed.
[u/mrichter/AliRoot.git] / STEER / AliTriggerConfiguration.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 ///////////////////////////////////////////////////////////////////////////////
17 //
18 // This class which defines defines the Trigger Configuration 
19 //
20 // Trigger Configuration defines the trigger setup for a particular run
21 // We have default configurations for each running mode (Pb-Pb, p-p, p-A, Calibration, etc).
22 // It keep:
23 //   All the information conained in the CTP configuration file used
24 //   online during the data taking
25 //
26 // Configurations could be created and stored in local file.
27 // By default the configuration is loaded from the corresponding GRP entry
28 // inside the OCDB. There one can have one and only one configuration per run.
29 //
30 //   Example how to create a Trigger Configuration:
31 //
32 //   AliTriggerConfiguration config( "TEST", "Test Configuration" );
33 //
34 //   // Define a Cluster Detector
35 //   config.AddDetectorCluster( "VZERO ZDC MUON" );
36 //
37 //   // Define the trigger conditions (see AliTriggerCondition.cxx)
38 //   config.AddCondition( "VZERO_TEST1_L0 & MUON_SPlus_LPt_L0 & ZDC_TEST2_L0", // condition
39 //                         "VO1_M1_ZDC2",      // short name
40 //                         "Dummy",            // short description
41 //                          0x0100 );          // class mask (set one bit)
42 //
43 //   config.AddCondition( "VZERO_TEST2_L0 & MUON_SMinus_HPt_L0 & ZDC_TEST1_L0",
44 //                         "VO2_M3_ZDC1",
45 //                         "Dummy",
46 //                          0x0200 );
47 //
48 //   config.AddCondition( "VZERO_TEST3_L0 | MUON_Unlike_LPt_L0 | ZDC_TEST3_L0",
49 //                         "VO3_M1_ZDC3",
50 //                         "Dummy",
51 //                          0x0400 );
52 //   config.CheckInputsConditions("Config.C");
53 //   config.Print();
54 //
55 //   // save the configuration to file 
56 //   // (default file name $ALICE_ROOT/data/triggerConfigurations.root)
57 //   config.WriteConfiguration(); or config.WriteConfiguration( filename );
58 //
59 ///////////////////////////////////////////////////////////////////////////////
60 #include <Riostream.h>
61 //#include <cstdlib>
62
63 #include <TObject.h>
64 #include <TString.h>
65 #include <TObjString.h>
66 #include <TObjArray.h>
67 #include <TSystem.h>
68 #include <TKey.h>
69 #include <TFile.h>
70
71 #include "AliLog.h"
72 #include "AliRun.h"
73 #include "AliRunLoader.h"
74 #include "AliModule.h"
75
76 #include "AliTriggerInput.h"
77 //#include "AliTriggerDetector.h"
78 #include "AliTriggerInteraction.h"
79 #include "AliTriggerBCMask.h"
80 #include "AliTriggerCluster.h"
81 #include "AliTriggerPFProtection.h"
82 #include "AliTriggerDescriptor.h"
83 #include "AliTriggerClass.h"
84 #include "AliTriggerConfiguration.h"
85
86 ClassImp(AliTriggerConfiguration)
87
88 const TString AliTriggerConfiguration::fgkConfigurationFileName("/data/triggerConfigurations.root");
89
90 //_____________________________________________________________________________
91 AliTriggerConfiguration::AliTriggerConfiguration():
92   TNamed(),
93   fInputs(),
94   fInteractions(),
95   fFunctions(),
96   fPFProtections(),
97   fMasks(),
98   fDescriptors(),
99   fClusters(),
100   fClasses(),
101   fVersion(0)
102 {
103   // Default constructor
104 }
105
106 //_____________________________________________________________________________
107 AliTriggerConfiguration::AliTriggerConfiguration( TString & name, TString & description ):
108   TNamed( name, description ),
109   fInputs(),
110   fInteractions(),
111   fFunctions(),
112   fPFProtections(),
113   fMasks(),
114   fDescriptors(),
115   fClusters(),
116   fClasses(),
117   fVersion(0)
118 {
119   // Constructor
120 }
121
122 //_____________________________________________________________________________
123 AliTriggerConfiguration::~AliTriggerConfiguration() 
124
125   // Destructor
126   fInputs.SetOwner();
127   fInputs.Delete();
128   fInteractions.SetOwner();
129   fInteractions.Delete();
130   fFunctions.SetOwner();
131   fFunctions.Delete();
132   fPFProtections.SetOwner();
133   fPFProtections.Delete();
134   fMasks.SetOwner();
135   fMasks.Delete();
136   fDescriptors.SetOwner();
137   fDescriptors.Delete();
138   fClusters.SetOwner(); 
139   fClusters.Delete(); 
140   fClasses.SetOwner(); 
141   fClasses.Delete(); 
142 }
143
144 //_____________________________________________________________________________
145 Bool_t AliTriggerConfiguration::AddInput( AliTriggerInput* input )
146 {
147   // Add a trigger input to
148   // the list of the trigger inputs
149   if (fInputs.GetEntries() < kNMaxInputs) {
150     fInputs.AddLast( input );
151     return kTRUE;
152   }
153   else {
154     AliError("CTP can handle up to 50 inputs ! Impossible to add the required input !");
155     return kFALSE;
156   }
157 }
158
159 //_____________________________________________________________________________
160 AliTriggerInput* AliTriggerConfiguration::AddInput( TString &name, TString &det,
161                                                     UChar_t level, UInt_t signature,
162                                                     UChar_t number )
163 {
164   // Add a trigger input to
165   // the list of the trigger inputs
166   AliTriggerInput *input = new AliTriggerInput(name,det,level,signature,number);
167   if (!AddInput(input)) {
168     delete input;
169     return NULL;
170   }
171   else
172     return input;
173 }
174
175 //_____________________________________________________________________________
176 AliTriggerInteraction* AliTriggerConfiguration::AddInteraction(TString &name, TString &logic)
177 {
178   // Add a trigger interaction object to
179   // the list of the trigger interactions
180   AliTriggerInteraction *interact = new AliTriggerInteraction(name,logic);
181   if (!AddInteraction(interact)) {
182     delete interact;
183     return NULL;
184   }
185   else
186     return interact;
187 }
188
189 //_____________________________________________________________________________
190 Bool_t  AliTriggerConfiguration::AddInteraction(AliTriggerInteraction *interact)
191 {
192   // Add a trigger interaction object to
193   // the list of the trigger interactions
194   if (fInteractions.GetEntries() < kNMaxInteractions) {
195     if (interact->CheckInputs(fInputs)) {
196       fInteractions.AddLast( interact );
197       return kTRUE;
198     }
199     else
200       AliError("Invalid interaction ! Impossible to add it !");
201   }
202   else
203     AliError("CTP can handle up to 2 interactions ! Impossible to add the required interaction !");
204
205   return kFALSE;
206 }
207
208 //_____________________________________________________________________________
209 AliTriggerInteraction* AliTriggerConfiguration::AddFunction(TString &name, TString &logic)
210 {
211   // Add a trigger function object to
212   // the list of the trigger functions
213   AliTriggerInteraction *func = new AliTriggerInteraction(name,logic);
214   if (!AddFunction(func)) {
215     delete func;
216     return NULL;
217   }
218   else
219     return func;
220 }
221
222 //_____________________________________________________________________________
223 Bool_t  AliTriggerConfiguration::AddFunction(AliTriggerInteraction *func)
224 {
225   // Add a trigger function object to
226   // the list of the trigger functions
227   if (fFunctions.GetEntries() < kNMaxFunctions) {
228     if (func->CheckInputs(fInputs)) {
229       fFunctions.AddLast( func );
230       return kTRUE;
231     }
232     else
233       AliError("Invalid logical function ! Impossible to add it !");
234   }
235   else
236     AliError("CTP can handle up to 2 logical functions ! Impossible to add the required interaction !");
237
238   return kFALSE;
239 }
240
241 //_____________________________________________________________________________
242 Bool_t AliTriggerConfiguration::AddPFProtection( AliTriggerPFProtection* pfp )
243 {
244   // Add a trigger past-future protection object to
245   // the list of the trigger past-future protections
246   if (fPFProtections.GetEntries() < kNMaxPFProtections) {
247     if (pfp->CheckInteractions(fInteractions)) {
248       fPFProtections.AddLast( pfp );
249       return kTRUE;
250     }
251     else
252       AliError("Invalid past-future protection ! Impossible to add it !");
253   }
254   else
255     AliError("CTP can handle up to 4 past-future protections ! Impossible to add the required protection !");
256
257   return kFALSE;
258 }
259
260 //_____________________________________________________________________________
261 AliTriggerBCMask* AliTriggerConfiguration::AddMask( TString &name, TString &mask )
262 {
263   // Add a trigger bunch-crossing mask object to
264   // the list of the trigger bunch-crossing masks
265   AliTriggerBCMask *bcmask = new AliTriggerBCMask(name,mask);
266   if (!AddMask(bcmask)) {
267     delete bcmask;
268     return NULL;
269   }
270   else
271     return bcmask;
272 }
273
274 //_____________________________________________________________________________
275 Bool_t AliTriggerConfiguration::AddMask( AliTriggerBCMask* mask )
276 {
277   // Add a trigger bunch-crossing mask object to
278   // the list of the trigger bunch-crossing masks
279   if (fMasks.GetEntries() < kNMaxMasks) {
280       fMasks.AddLast( mask );
281       return kTRUE;
282   }
283   else
284     AliError("CTP can handle up to 4 bunch-crossing masks ! Impossible to add the required mask !");
285
286   return kFALSE;
287 }
288
289 //_____________________________________________________________________________
290 AliTriggerCluster* AliTriggerConfiguration::AddCluster( TString &name, UChar_t index, TString &detectors)
291 {
292   // Add a trigger detector readout cluster to
293   // the list of the trigger clusters
294   AliTriggerCluster *clust = new AliTriggerCluster(name,index,detectors);
295   if (!AddCluster(clust)) {
296     delete clust;
297     return NULL;
298   }
299   else
300     return clust;
301
302 }
303
304 //_____________________________________________________________________________
305 Bool_t AliTriggerConfiguration::AddCluster( AliTriggerCluster* cluster )
306 {
307   // Add a trigger detector readout cluster to
308   // the list of the trigger clusters
309   if (fClusters.GetEntries() < kNMaxClusters) {
310     TString dets(cluster->GetDetectorsInCluster());
311     if (!(dets.IsNull())) {
312       fClusters.AddLast( cluster );
313       return kTRUE;
314     }
315     else
316       AliError("Empty trigger cluster ! Impossible to add it !");
317   }
318   else
319     AliError("CTP can handle up to 6 different detector clusters ! Impossible to add the required cluster !");
320
321   return kFALSE;
322 }
323
324 //_____________________________________________________________________________
325 TString AliTriggerConfiguration::GetActiveDetectors() const
326 {
327   // Return an string with all active detector
328   // from each cluster
329
330    TString activeDet = "";
331
332    Int_t nclus = fClusters.GetEntriesFast();
333    if( !nclus ) return activeDet;
334    
335    for( Int_t j=0; j<nclus; ++j ) {
336       TString detStr = ((AliTriggerCluster*)fClusters.At(j))->GetDetectorsInCluster();
337       TObjArray* det = detStr.Tokenize(" ");
338       Int_t ndet = det->GetEntriesFast();
339       for( Int_t k=0; k<ndet; ++k ) {
340          if( activeDet.Contains( ((TObjString*)det->At(k))->String() ) )continue;
341          activeDet.Append( " " );
342          activeDet.Append( ((TObjString*)det->At(k))->String() );
343       }
344    }
345    return activeDet;
346 }
347
348 //_____________________________________________________________________________
349 TString AliTriggerConfiguration::GetTriggeringDetectors() const
350 {
351   // Return an string with all detectors
352   // used for triggering
353
354    TString trDet = "";
355
356    Int_t ninputs = fInputs.GetEntriesFast();
357    if( !ninputs ) return trDet;
358    
359    for( Int_t j=0; j<ninputs; j++ ) {
360       TString detStr = ((AliTriggerInput*)fInputs.At(j))->GetDetector();
361       if( trDet.Contains( detStr ) ) continue;
362       trDet.Append( " " );
363       trDet.Append( detStr );
364    }
365    return trDet;
366 }
367
368 //_____________________________________________________________________________
369 TString AliTriggerConfiguration::GetTriggeringModules() const
370 {
371    // Return an string with all detectors (modules in the AliRoot
372   // simulation sense) used for triggering
373
374    TString trDet = "";
375
376    Int_t ninputs = fInputs.GetEntriesFast();
377    if( !ninputs ) return trDet;
378    
379    for( Int_t j=0; j<ninputs; j++ ) {
380       TString detStr = ((AliTriggerInput*)fInputs.At(j))->GetModule();
381       if( trDet.Contains( detStr ) ) continue;
382       trDet.Append( " " );
383       trDet.Append( detStr );
384    }
385    return trDet;
386 }
387
388 //_____________________________________________________________________________
389 AliTriggerDescriptor* AliTriggerConfiguration::AddDescriptor( TString &name, TString &cond )
390 {
391   // Add a trigger descriptor to
392   // the list of the trigger descriptors
393   AliTriggerDescriptor *desc = new AliTriggerDescriptor(name,cond);
394   if (!AddDescriptor(desc)) {
395     delete desc;
396     return NULL;
397   }
398   else
399     return desc;
400 }
401
402 //_____________________________________________________________________________
403 Bool_t AliTriggerConfiguration::AddDescriptor( AliTriggerDescriptor *desc )
404 {
405   // Add a trigger descriptor to
406   // the list of the trigger descriptors
407   if (fDescriptors.GetEntries() < kNMaxClasses) {
408     if (desc->CheckInputsAndFunctions(fInputs,fFunctions)) {
409       fDescriptors.AddLast( desc );
410       return kTRUE;
411     }
412     else
413       AliError("Invalid trigger desciptor ! Impossible to add it !");
414   }
415   else
416     AliError("CTP can handle up to 50 different descriptors ! Impossible to add the required descriptor !");
417
418   return kFALSE;
419 }
420
421 //_____________________________________________________________________________
422 Bool_t AliTriggerConfiguration::AddClass( AliTriggerClass *trclass )
423 {
424   // Add a trigger class to
425   // the list of the trigger classes
426   if (fClasses.GetEntries() < kNMaxClasses) {
427     if (trclass->CheckClass(this)) {
428       fClasses.AddLast( trclass );
429       return kTRUE;
430     }
431     else
432       AliError("Invalid trigger class ! Impossible to add it !");
433   }
434   else
435     AliError("CTP can handle up to 50 different classes ! Impossible to add the required class !");
436
437   return kFALSE;
438 }
439
440 //_____________________________________________________________________________
441 AliTriggerClass *AliTriggerConfiguration::AddClass( TString &name, UChar_t index,
442                                                     AliTriggerDescriptor *desc, AliTriggerCluster *clus,
443                                                     AliTriggerPFProtection *pfp, AliTriggerBCMask *mask,
444                                                     UInt_t prescaler, Bool_t allrare)
445 {
446   // Add a trigger class to
447   // the list of the trigger classes
448   if (!fDescriptors.FindObject(desc)) {
449     AliError("Invalid descriptor ! Impossible to add the class !");
450     return NULL;
451   }
452   if (!fClusters.FindObject(clus)) {
453     AliError("Invalid cluster ! Impossible to add the class !");
454     return NULL;
455   }
456   if (!fPFProtections.FindObject(pfp)) {
457     AliError("Invalid past-future protection ! Impossible to add the class !");
458     return NULL;
459   }
460   if (!fMasks.FindObject(mask)) {
461     AliError("Invalid bunch-crossing mask ! Impossible to add the class !");
462     return NULL;
463   }
464   AliTriggerClass* trclass = new AliTriggerClass( name,index,desc,clus,pfp,mask,prescaler,allrare );
465   if (!AddClass(trclass)) {
466     delete trclass;
467     return NULL;
468   }
469   else
470     return trclass;
471 }
472
473 //_____________________________________________________________________________
474 AliTriggerClass *AliTriggerConfiguration::AddClass( TString &name, UChar_t index,
475                                                     TString &desc, TString &clus,
476                                                     TString &pfp, TString &mask,
477                                                     UInt_t prescaler, Bool_t allrare)
478 {
479    // Add a new trigger class
480   if (!fDescriptors.FindObject(desc)) {
481     AliError("Invalid descriptor ! Impossible to add the class !");
482     return NULL;
483   }
484   if (!fClusters.FindObject(clus)) {
485     AliError("Invalid cluster ! Impossible to add the class !");
486     return NULL;
487   }
488   if (!fPFProtections.FindObject(pfp)) {
489     AliError("Invalid past-future protection ! Impossible to add the class !");
490     return NULL;
491   }
492   if (!fMasks.FindObject(mask)) {
493     AliError("Invalid bunch-crossing mask ! Impossible to add the class !");
494     return NULL;
495   }
496   AliTriggerClass* trclass = new AliTriggerClass( this, name,index,desc,clus,pfp,mask,prescaler,allrare );
497   if (!AddClass(trclass)) {
498     delete trclass;
499     return NULL;
500   }
501   else
502     return trclass;
503 }
504
505 //_____________________________________________________________________________
506 Bool_t AliTriggerConfiguration::ProcessConfigurationLine(const char* line, Int_t& level)
507 {
508     // processes one line of configuration
509
510      TString strLine(line);
511
512      if (strLine.BeginsWith("#")) return kTRUE;
513      if (strLine.BeginsWith("PARTITION:")) {
514        strLine.ReplaceAll("PARTITION:","");
515        SetName(strLine.Data());
516        return kTRUE;
517      }
518      if (strLine.BeginsWith("VERSION:")) {
519        strLine.ReplaceAll("VERSION:","");
520        fVersion = strLine.Atoi();
521        return kTRUE;
522      }
523      if (strLine.BeginsWith("INPUTS:")) {
524        level = 1;
525        return kTRUE;
526      }
527      if (strLine.BeginsWith("INTERACTIONS:")) {
528        level = 2;
529        return kTRUE;
530      }
531      if (strLine.BeginsWith("DESCRIPTORS:")) {
532        level = 3;
533        return kTRUE;
534      }
535      if (strLine.BeginsWith("CLUSTERS:")) {
536        level = 4;
537        return kTRUE;
538      }
539      if (strLine.BeginsWith("PFS:")) {
540        level = 5;
541        return kTRUE;
542      }
543      if (strLine.BeginsWith("BCMASKS:")) {
544        level = 6;
545        return kTRUE;
546      }
547      if (strLine.BeginsWith("CLASSES:")) {
548        level = 7;
549        return kTRUE;
550      }
551
552      strLine.ReplaceAll("*",'!');
553      TObjArray *tokens = strLine.Tokenize(" \t");
554      Int_t ntokens = tokens->GetEntriesFast();
555      if (ntokens == 0)
556      {
557        delete tokens;
558        return kTRUE;
559      }
560      switch (level) {
561      case 1:
562        // Read inputs
563        if (ntokens != 5) {
564          AliError(Form("Invalid trigger input syntax (%s)!",strLine.Data()));
565          return kFALSE;
566        }
567        AddInput(((TObjString*)tokens->At(0))->String(),
568                      ((TObjString*)tokens->At(1))->String(),
569                      ((TObjString*)tokens->At(2))->String().Atoi(),
570                      ((TObjString*)tokens->At(3))->String().Atoi(),
571                      ((TObjString*)tokens->At(4))->String().Atoi());
572        break;
573      case 2:
574        // Read interaction
575        if (ntokens != 2) {
576          AliError(Form("Invalid trigger interaction syntax (%s)!",strLine.Data()));
577          return kFALSE;
578        }
579        AddInteraction(((TObjString*)tokens->At(0))->String(),
580                            ((TObjString*)tokens->At(1))->String());
581        break;
582      case 3:
583        // Read logical functions and descriptors
584        if (ntokens < 2) {
585          if ((((TObjString*)tokens->At(0))->String().CompareTo("EMPTY") == 0) ||
586              (((TObjString*)tokens->At(0))->String().CompareTo("DEMPTY") == 0)) {
587            AddDescriptor(((TObjString*)tokens->At(0))->String(),
588                          strLine.ReplaceAll(((TObjString*)tokens->At(0))->String(),""));
589            break;
590          }
591          else {
592            AliError(Form("Invalid trigger descriptor syntax (%s)!",strLine.Data()));
593            return kFALSE;
594          }
595        }
596        if (((TObjString*)tokens->At(0))->String().BeginsWith("l0f")) {
597          // function
598          AddFunction(((TObjString*)tokens->At(0))->String(),
599                           strLine.ReplaceAll(((TObjString*)tokens->At(0))->String(),""));
600        }
601        else {
602          AddDescriptor(((TObjString*)tokens->At(0))->String(),
603                             strLine.ReplaceAll(((TObjString*)tokens->At(0))->String(),""));
604        }
605        break;
606      case 4:
607        {
608          if (ntokens < 2) {
609            AliError(Form("Invalid trigger cluster syntax (%s)!",strLine.Data()));
610            return kFALSE;
611          }
612          TString strTemp;
613          for(Int_t i = 2; i < ntokens; i++) {
614            strTemp += ((TObjString*)tokens->At(i))->String();
615            strTemp += " ";
616          }
617          AddCluster(((TObjString*)tokens->At(0))->String(),
618                          ((TObjString*)tokens->At(1))->String().Atoi(),
619                          strTemp);
620        }
621        break;
622      case 5:
623        {
624          AliTriggerPFProtection *pfp = NULL;
625          if (((TObjString*)tokens->At(0))->String().CompareTo("NONE") == 0) {
626            pfp = new AliTriggerPFProtection(((TObjString*)tokens->At(0))->String());
627          }
628          else {
629            if (ntokens != 10) {
630              AliError(Form("Invalid trigger pfs syntax (%s)!",strLine.Data()));
631              return kFALSE;
632            }
633            pfp = new AliTriggerPFProtection(((TObjString*)tokens->At(0))->String(),
634                                             ((TObjString*)tokens->At(1))->String(),
635                                             ((TObjString*)tokens->At(2))->String(),
636                                             ((TObjString*)tokens->At(3))->String());
637            pfp->SetNa1(((TObjString*)tokens->At(4))->String().Atoi());
638            pfp->SetNa2(((TObjString*)tokens->At(5))->String().Atoi());
639            pfp->SetNb1(((TObjString*)tokens->At(6))->String().Atoi());
640            pfp->SetNb2(((TObjString*)tokens->At(7))->String().Atoi());
641            pfp->SetTa(((TObjString*)tokens->At(8))->String().Atoi());
642            pfp->SetTb(((TObjString*)tokens->At(9))->String().Atoi());
643          }
644          AddPFProtection(pfp);
645        }
646        break;
647      case 6:
648          if (ntokens > 2) {
649            AliError(Form("Invalid trigger bcmasks syntax (%s)!",strLine.Data()));
650            return kFALSE;
651          }
652        if (((TObjString*)tokens->At(0))->String().CompareTo("NONE") == 0)
653          AddMask(new AliTriggerBCMask(((TObjString*)tokens->At(0))->String()));
654        else {
655          AddMask(((TObjString*)tokens->At(0))->String(),
656                       ((TObjString*)tokens->At(1))->String());
657        }
658        break;
659      case 7:
660        {
661          if (ntokens != 8) {
662            AliError(Form("Invalid trigger class syntax (%s)!",strLine.Data()));
663            return kFALSE;
664          }
665          AliTriggerClass *trclass = new AliTriggerClass(this,
666                                                         ((TObjString*)tokens->At(0))->String(),((TObjString*)tokens->At(1))->String().Atoi(),
667                                                         ((TObjString*)tokens->At(2))->String(),((TObjString*)tokens->At(3))->String(),
668                                                         ((TObjString*)tokens->At(4))->String(),((TObjString*)tokens->At(5))->String(),
669                                                         ((TObjString*)tokens->At(6))->String().Atoi(),(Bool_t)(((TObjString*)tokens->At(7))->String().Atoi()));
670          AddClass(trclass);
671        }
672      default:
673        break;
674      }
675      delete tokens;
676
677      return kTRUE;
678 }
679
680 //_____________________________________________________________________________
681 AliTriggerConfiguration* AliTriggerConfiguration::LoadConfiguration(TString & configuration)
682 {
683    // Load one pre-created Configurations from database/file that match
684    // with the input string 'configuration'
685    // Ej: "Pb-Pb" or "p-p-DIMUON CALIBRATION-CENTRAL-BARREL"
686   // By default the files are stored in GRP/CTP folder.
687   // The filename is constructed as: GRP/CTP/<configuration>.cfg
688
689    // Load the selected configuration
690   TString filename;
691   if (configuration.EndsWith(".cfg") ||
692       configuration.EndsWith(".shuttle")) {
693     filename = configuration;
694   }
695   else {
696     filename = gSystem->Getenv("ALICE_ROOT");
697     filename += "/GRP/CTP/";
698     filename += configuration;
699     filename += ".cfg";
700   }
701
702    if( gSystem->AccessPathName( filename.Data() ) ) {
703       AliErrorClass( Form( "file (%s) not found", filename.Data() ) );
704       return NULL;
705    }
706
707
708    ifstream *file = new ifstream ( filename.Data() );
709    if (!*file) {
710      AliErrorClass(Form("Error opening file (%s) !",filename.Data()));
711      file->close();
712      delete file;
713      return NULL;
714    }
715
716    AliTriggerConfiguration *cfg = new AliTriggerConfiguration();
717
718    Int_t level = 0;
719
720    TString strLine;
721    while (strLine.ReadLine(*file)) {
722      if (cfg->ProcessConfigurationLine(strLine, level) == kFALSE)
723      {
724         delete cfg;
725         cfg = 0;
726         break;
727      }
728    }
729
730    file->close();
731    delete file;
732
733    return cfg;
734 }
735
736 //_____________________________________________________________________________
737 AliTriggerConfiguration* AliTriggerConfiguration::LoadConfigurationFromString(const char* configuration)
738 {
739    // Loads configuration given as parameter <configuration>
740
741    if (!configuration)
742      return 0;
743
744    AliTriggerConfiguration *cfg = new AliTriggerConfiguration();
745
746    Int_t level = 0;
747
748    TObjArray* tokens = TString(configuration).Tokenize("\n");
749    for (Int_t i=0; i<tokens->GetEntries(); i++)
750    {
751      TObjString* str = dynamic_cast<TObjString*>(tokens->At(i));
752      if (!str)
753        continue;
754
755      if (cfg->ProcessConfigurationLine(str->String(), level) == kFALSE)
756      {
757         delete cfg;
758         cfg = 0;
759         break;
760      }
761    }
762
763    delete tokens;
764
765    return cfg;
766 }
767
768 //_____________________________________________________________________________
769 TObjArray* AliTriggerConfiguration::GetAvailableConfigurations( const char* filename )
770 {
771    // Return an array of configuration in the file
772
773    TString path;
774    if( !filename[0] ) {
775       path += gSystem->Getenv( "ALICE_ROOT" );
776       path += fgkConfigurationFileName;
777    }
778    else
779       path += filename;
780
781    if( gSystem->AccessPathName( path.Data() ) ) {
782       AliErrorGeneral( "AliTriggerConfiguration", Form( "file (%s) not found", path.Data() ) );
783       return NULL;
784    }
785
786    TObjArray* desArray = new TObjArray();
787
788    TFile file( path.Data(), "READ" );
789    if( file.IsZombie() ) {
790       AliErrorGeneral( "AliTriggerConfiguration", Form( "Error opening file (%s)", path.Data() ) );
791       return NULL;
792    }
793
794    file.ReadAll();
795
796    TKey* key;
797    TIter next( file.GetListOfKeys() );
798    while( (key = (TKey*)next()) ) {
799       TObject* obj = key->ReadObj();
800       if( obj->InheritsFrom( "AliTriggerConfiguration" ) ) {
801          desArray->AddLast( obj );
802       }
803    }
804    file.Close();
805
806    return desArray;
807 }
808
809 //_____________________________________________________________________________
810 void AliTriggerConfiguration::WriteConfiguration( const char* filename )
811 {
812    // Write the configuration
813    TString path;
814    if( !filename[0] ) {
815       path += gSystem->Getenv("ALICE_ROOT");
816       path += fgkConfigurationFileName;
817    }
818    else
819       path += filename;
820
821    TFile file( path.Data(), "UPDATE" );
822    if( file.IsZombie() ) {
823       AliErrorGeneral( "AliTriggerConfiguration", 
824                         Form( "Can't open file (%s)", path.Data() ) );
825       return;
826    }
827
828    Bool_t result = (Write( GetName(), TObject::kOverwrite ) != 0);
829    if( !result )
830       AliErrorGeneral( "AliTriggerConfiguration",
831                         Form( "Can't write entry to file <%s>!", path.Data() ) );
832    file.Close();
833 }
834
835 //_____________________________________________________________________________
836 Bool_t AliTriggerConfiguration::CheckConfiguration( TString& configfile )
837 {
838    // To be used on the pre-creation of Configurations to check if the
839    // conditions have valid inputs names.
840    //
841    // Initiate detectors modules from a Config file
842    // Ask to each active module present in the fDetectorCluster
843    // to create a Trigger detector and retrive the inputs from it
844    // to create a list of inputs.
845    // Each condition in the configuration is then checked agains 
846    // the list of inputs
847
848
849    if (!gAlice) {
850       AliError( "no gAlice object. Restart aliroot and try again." );
851       return kFALSE;
852    }
853    if (gAlice->Modules()->GetEntries() > 0) {
854       AliError( "gAlice was already run. Restart aliroot and try again." );
855       return kFALSE;
856    }
857
858    AliInfo( Form( "initializing gAlice with config file %s",
859             configfile.Data() ) );
860    StdoutToAliInfo( StderrToAliError(
861       gAlice->Init( configfile.Data() );
862    ););
863
864    AliRunLoader* runLoader = gAlice->GetRunLoader();
865    if( !runLoader ) {
866       AliError( Form( "gAlice has no run loader object. "
867                       "Check your config file: %s", configfile.Data() ) );
868       return kFALSE;
869    }
870
871    // get the possible inputs to check the condition
872    TObjArray inputs;
873    TObjArray* detArray = runLoader->GetAliRun()->Detectors();
874
875    TString detStr = GetTriggeringModules();
876
877    for( Int_t iDet = 0; iDet < detArray->GetEntriesFast(); iDet++ ) {
878       AliModule* det = (AliModule*) detArray->At(iDet);
879       if( !det || !det->IsActive() ) continue;
880       if( IsSelected( det->GetName(), detStr ) ) {
881          AliInfo( Form( "Creating inputs for %s", det->GetName() ) );
882          AliTriggerDetector* dtrg = det->CreateTriggerDetector();
883          dtrg->CreateInputs(GetInputs());
884          TObjArray* detInp = dtrg->GetInputs();
885          for( Int_t i=0; i<detInp->GetEntriesFast(); i++ ) {
886             AliInfo( Form( "Adding input %s", ((AliTriggerInput*)detInp->At(i))->GetName() ) );
887             inputs.AddLast( detInp->At(i) );
888          }
889       }
890    }
891
892    // check if the condition is compatible with the triggers inputs
893    Int_t ndesc = fClasses.GetEntriesFast();
894    Bool_t check = kTRUE;
895    ULong64_t mask = 0L;
896    for( Int_t j=0; j<ndesc; j++ ) {
897      AliTriggerClass *trclass = (AliTriggerClass*)fClasses.At( j );
898      if( !(trclass->CheckClass( this )) ) check = kFALSE;
899      else {
900        if (trclass->IsActive(this->GetInputs(),this->GetFunctions())) {
901          AliInfo( Form( "Trigger Class (%s) OK, class mask (0x%Lx)",
902                         trclass->GetName(), trclass->GetMask( ) ) );
903        }
904        else {
905          AliWarning( Form( "Trigger Class (%s) is NOT active, class mask (0x%Lx)",
906                            trclass->GetName(), trclass->GetMask( ) ) );
907        }
908      }
909      // check if condition mask is duplicated
910      if( mask & trclass->GetMask() ) {
911        AliError( Form("Class (%s). The class mask (0x%Lx) is ambiguous. It was already defined",
912                       trclass->GetName(), trclass->GetMask()  ) );
913        check = kFALSE;
914      }
915      mask |= trclass->GetMask();
916    }
917
918    return check;
919 }
920
921 //_____________________________________________________________________________
922 void AliTriggerConfiguration::Reset()
923 {
924    for( Int_t j=0; j<fInputs.GetEntriesFast(); j++ )
925      ((AliTriggerInput*)fInputs.At(j))->Reset();
926
927    for( Int_t j=0; j<fClasses.GetEntriesFast(); j++ )
928      ((AliTriggerClass*)fClasses.At(j))->Reset();
929 }
930
931 //_____________________________________________________________________________
932 void AliTriggerConfiguration::Print( const Option_t*  ) const
933 {
934    // Print
935   cout << "#################################################" << endl;
936    cout << "Trigger Configuration:"  << endl;
937    cout << "  Name:              " << GetName() << endl; 
938    cout << "  Description:       " << GetTitle() << endl;
939    cout << "  Version:           " << GetVersion() << endl;
940    cout << "  Active Detectors:  " << GetActiveDetectors() << endl;
941    cout << "  Trigger Detectors: " << GetTriggeringDetectors() << endl;
942
943    cout << "#################################################" << endl;
944    fInputs.Print();
945    cout << "#################################################" << endl;
946    fInteractions.Print();
947    cout << "#################################################" << endl;
948    fFunctions.Print();
949    cout << "#################################################" << endl;
950    fDescriptors.Print();
951    cout << "#################################################" << endl;
952    fClusters.Print();
953    cout << "#################################################" << endl;
954    fPFProtections.Print();
955    cout << "#################################################" << endl;
956    fMasks.Print();
957    cout << "#################################################" << endl;
958    fClasses.Print();
959    cout << "#################################################" << endl;
960
961    cout << endl;
962 }
963
964
965 //////////////////////////////////////////////////////////////////////////////
966 // Helper method
967
968 //_____________________________________________________________________________
969 Bool_t AliTriggerConfiguration::IsSelected( TString detName, TString& detectors ) const
970 {
971    // check whether detName is contained in detectors
972    // if yes, it is removed from detectors
973
974    // check if all detectors are selected
975    if( (detectors.CompareTo("ALL") == 0 ) ||
976         detectors.BeginsWith("ALL ") ||
977         detectors.EndsWith(" ALL") ||
978         detectors.Contains(" ALL ") ) {
979       detectors = "ALL";
980       return kTRUE;
981    }
982
983    // search for the given detector
984    Bool_t result = kFALSE;
985    if( (detectors.CompareTo( detName ) == 0) ||
986         detectors.BeginsWith( detName+" " ) ||
987         detectors.EndsWith( " "+detName ) ||
988         detectors.Contains( " "+detName+" " ) ) {
989       detectors.ReplaceAll( detName, "" );
990       result = kTRUE;
991    }
992
993    // clean up the detectors string
994    while( detectors.Contains("  ") )  detectors.ReplaceAll( "  ", " " );
995    while( detectors.BeginsWith(" ") ) detectors.Remove( 0, 1 );
996    while( detectors.EndsWith(" ") )   detectors.Remove( detectors.Length()-1, 1 );
997
998    return result;
999 }