]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/BASE/AliHLTGlobalTriggerDecision.h
0787ed600acecf8ac78cb0c0160662fc6d0169d0
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTGlobalTriggerDecision.h
1 //-*- Mode: C++ -*-
2 // $Id:$
3 #ifndef ALIHLTGLOBALTRIGGERDECISION_H
4 #define ALIHLTGLOBALTRIGGERDECISION_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   AliHLTGlobalTriggerDecision.h
10 /// @author Artur Szostak <artursz@iafrica.com>
11 /// @date   26 Nov 2008
12 /// @brief  Declaration of the AliHLTGlobalTriggerDecision class storing the global HLT decision.
13
14 #include "AliHLTTriggerDecision.h"
15 #include "TArrayL64.h"
16 #include "TObjArray.h"
17
18 class AliHLTGlobalTriggerDecision : public AliHLTTriggerDecision
19 {
20  public:
21   
22   /**
23    * Default constructor.
24    */
25   AliHLTGlobalTriggerDecision();
26   
27   /**
28    * Constructor specifying multiple information fields.
29    * \param result  The result of the global trigger decision.
30    * \param triggerDomain  The trigger domain for the global trigger decision.
31    * \param description  The description of (reason for) the global trigger decision.
32    */
33   AliHLTGlobalTriggerDecision(
34       bool result, const AliHLTTriggerDomain& triggerDomain,
35       const char* description = ""
36     );
37   
38   /**
39    * Default destructor.
40    */
41   virtual ~AliHLTGlobalTriggerDecision();
42   
43   /**
44    * Inherited from TObject, this prints the contents of the trigger decision.
45    * \param option  Can be "short" which will print the short format or "counters"
46    *    which will print only the counters or "compact" which will print only the
47    *    global information but not the lists of input objects.
48    */
49   virtual void Print(Option_t* option = "") const;
50   
51   /**
52    * Returns the number of trigger inputs that contributed to this global trigger decision.
53    */
54   Int_t NumberOfTriggerInputs() const { return fContributingTriggers.GetEntriesFast(); }
55   
56   /**
57    * Returns the i'th trigger input object in fContributingTriggers.
58    */
59   const AliHLTTriggerDecision* TriggerInput(Int_t i) const
60   {
61     return static_cast<const AliHLTTriggerDecision*>( fContributingTriggers[i] );
62   }
63   
64   /**
65    * Returns the list of trigger inputs used when making the global HLT trigger decision.
66    */
67   const TClonesArray& TriggerInputs() const { return fContributingTriggers; }
68   
69   /**
70    * Adds a trigger input to the list of triggers that were considered when making
71    * this global trigger decision.
72    * \param decision  The trigger decision object to add.
73    */
74   void AddTriggerInput(const AliHLTTriggerDecision& decision)
75   {
76     new (fContributingTriggers[fContributingTriggers.GetEntriesFast()]) AliHLTTriggerDecision(decision);
77   }
78   
79   /**
80    * Returns the number of other input objects that contributed to this global trigger decision.
81    */
82   Int_t NumberOfInputObjects() const { return fInputObjects.GetEntriesFast(); }
83   
84   /**
85    * Returns the i'th input object in fInputObjects.
86    */
87   const TObject* InputObject(Int_t i) const { return fInputObjects[i]; }
88   
89   /**
90    * Returns the list of other input objects used when making the global HLT trigger decision.
91    */
92   const TObjArray& InputObjects() const { return fInputObjects; }
93   
94   /**
95    * Adds a input object to the list of input objects that were considered when
96    * making this global trigger decision.
97    * \param object  The input object to add.
98    * \note  A copy of the object is made with TObject::Clone() and added.
99    */
100   void AddInputObject(const TObject* object)
101   {
102     fInputObjects.Add(object->Clone());
103   }
104   
105   /**
106    * Sets the counter array.
107    */
108   void SetCounters(const TArrayL64& counters) { fCounters = counters; }
109   
110   /**
111    * Returns the event trigger counters associated with the global trigger classes.
112    */
113   const TArrayL64& Counters() const { return fCounters; }
114   
115  private:
116   
117   TClonesArray fContributingTriggers;  /// The list of contributing trigger decisions from all AliHLTTrigger components that were considered.
118   TObjArray fInputObjects;  /// The list of other input objects.
119   TArrayL64 fCounters;  /// Event trigger counters. One counter for each trigger class in the global trigger.
120   
121   ClassDef(AliHLTGlobalTriggerDecision, 1) // Contains the HLT global trigger decision and information contributing to the decision.
122 };
123
124 #endif // ALIHLTGLOBALTRIGGERDECISION_H
125