]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/trigger/AliHLTTrigger.h
adding more functions to get data type definitions
[u/mrichter/AliRoot.git] / HLT / trigger / AliHLTTrigger.h
CommitLineData
2974f8dc 1//-*- Mode: C++ -*-
2// $Id$
a9670afe 3#ifndef ALIHLTTRIGGER_H
4#define ALIHLTTRIGGER_H
1b9a175e 5/* This file is property of and copyright by the ALICE HLT Project *
a9670afe 6 * ALICE Experiment at CERN, All rights reserved. *
7 * See cxx source for full Copyright notice */
4aa41877 8
1b9a175e 9/// @file AliHLTTrigger.cxx
10/// @author Artur Szostak <artursz@iafrica.com>
11/// @date 12 Aug 2008
12/// @brief Declaration of the AliHLTTrigger base component class.
13
a9670afe 14#include "AliHLTProcessor.h"
1b9a175e 15#include "AliHLTReadoutList.h"
16#include "AliHLTTriggerDomain.h"
4aa41877 17
5d79eb88 18class AliHLTTriggerDecision;
19
1b9a175e 20/**
21 * \class AliHLTTrigger
22 * This is the base class from which all HLT trigger components should inherit.
895f3660 23 *
24 * The class implements an AliHLTProcessor and implements specific functions
25 * for the implementation of a trigger component.
26 *
27 * Mandatory functions to be implemented by the child class
28 * - GetTriggerName() <br>
29 * must return a unique char string, serves also as component id
30 * - DoTrigger()
31 * this is the processing method. Can loop over all input blocks and
32 * calculate a trigger decision based on the input
33 * - Spawn()
34 * refer to AliHLTComponent::Spawn() for more details
35 *
36 * The class provides default methods for the following methods of the
37 * component interface. The methods can still be overloaded if needed:
38 * - AliHLTComponent::GetNumberOfInputBlocks()
39 * - AliHLTComponent::GetInputDataTypes()
40 * - AliHLTComponent::GetOutputDataType()
41 * - AliHLTComponent::GetOutputDataTypes()
42 * - AliHLTComponent::GetOutputDataSize()
43 *
44 * Within the DoTrigger() function, the component has access to the input
45 * data via:
46 * - AliHLTComponent::GetFirstInputObject()
47 * - AliHLTComponent::GetNextInputObject()
48 * - AliHLTComponent::GetFirstInputBlock()
49 * - AliHLTComponent::GetNextInputBlock()
50 * - GetEventData()
51 * - GetTriggerData()
52 *
53 * Further information about the event and the external trigger classes
54 * can be checked by the base class methods:
55 * - AliHLTComponent::EvaluateCTPTriggerClass()
56 * - AliHLTComponent::GetRunNo() const;
57 * - AliHLTComponent::GetRunType() const;
58 * - AliHLTComponent::GetEventId()
59 *
60 * Inside DoTrigger() the component can call TriggerEvent() to create a
61 * trigger. The trigger information is stored and propagated in an
62 * AliHLTTriggerDecision object.
63 *
64 * \ingroup alihlt_trigger_components
1b9a175e 65 */
a9670afe 66class AliHLTTrigger : public AliHLTProcessor
67{
4aa41877 68 public:
a9670afe 69
4aa41877 70 AliHLTTrigger();
71 virtual ~AliHLTTrigger();
a9670afe 72
73 /**
74 * Returns the name of the trigger. This must be unique across the system.
75 * This method is pure virtual and must be implemented by child classes.
76 * @return string containing the trigger name.
025443e0 77 * \note The name returned by this method should be a valid C++ symbol name.
78 * Otherwise the global trigger component will not be able to handle the
79 * derived trigger component properly.
80 * As an extention the '-' character is allowed in the symbol name,
81 * but not as the first character.
a9670afe 82 */
83 virtual const char* GetTriggerName() const = 0;
4aa41877 84
a9670afe 85 /**
86 * Inherited from AliHLTComponent. Returns the name of the trigger by default.
87 * @return string containing the trigger name as the component ID.
88 */
89 virtual const char* GetComponentID() { return GetTriggerName(); };
90
91 /**
92 * Get the input data types of the component.
93 * This method returns kAliHLTAnyDataType by default.
94 * @param list <i>[out]</i>: The list of data types to be filled.
95 */
025443e0 96 virtual void GetInputDataTypes(AliHLTComponentDataTypeList& list) const;
a9670afe 97
98 /**
99 * Returns extra output data types this trigger generates.
025443e0 100 * This returns kAliHLTDataTypeTriggerDecision by default.
a9670afe 101 * @param list <i>[out]</i>: The list of data types to be filled.
1b9a175e 102 * \note The underlying non const version of GetOutputDataTypes adds the value
025443e0 103 * kAliHLTDataTypeReadoutList to the list automatically.
a9670afe 104 */
025443e0 105 virtual void GetOutputDataTypes(AliHLTComponentDataTypeList& list) const;
a9670afe 106
107 /**
1b9a175e 108 * Get a ratio by how much the data volume is shrunk or enhanced.
109 * The method returns a size proportional to the trigger name string length
a9670afe 110 * for constBase, and 1 for inputMultiplier.
111 * @param constBase <i>[out]</i>: additive part, independent of the
112 * input data volume
113 * @param inputMultiplier <i>[out]</i>: multiplication ratio
114 */
4adf50d6 115 virtual void GetOutputDataSize(unsigned long& constBase, double& inputMultiplier);
a9670afe 116
117 protected:
118
4adf50d6 119 /// Not implemented.
120 AliHLTTrigger(const AliHLTTrigger& obj);
121 /// Not implemented.
122 AliHLTTrigger& operator = (const AliHLTTrigger& obj);
123
a9670afe 124 /**
125 * This method needs to be implemented by child classes to implement the actual
1b9a175e 126 * trigger algorithm. A positive trigger decision is made by calling the TriggerEvent
a9670afe 127 * method with TriggerEvent(true), or TriggerEvent(false) for a negative result
128 * (no trigger).
129 * If the AliHLTComponentEventData structure is needed for the current event being
130 * processed then the GetEventData method can be used to fetch it.
131 * Similarly, the AliHLTComponentTriggerData structure can be fetched with a call
132 * to GetTriggerData.
133 * @return Zero should be returned on success and a negative error code, which is
134 * compatible with the AliHLTSystem framework, on failure.
135 */
136 virtual int DoTrigger() = 0;
137
138 /**
139 * Fills the output with the trigger decision. This should be called in the DoTrigger
140 * method when a trigger decision has been made.
141 * @param value The trigger decision value. True for positive trigger and false
142 * for a negative result. (true by default)
4654280e 143 * \returns zero on success and negative value on failure. The possible failure
144 * codes are:<br>
145 * -ENOSPC - If there is not enough output buffer space for the trigger decision.<br>
146 * -ENOMSG - If the trigger decision object could not be serialised.
a9670afe 147 */
4654280e 148 int TriggerEvent(bool value = true);
a9670afe 149
5d79eb88 150 /**
151 * Fills the output with the given trigger decision. This should be called in the
152 * DoTrigger method when a custom trigger decision has been constructed.
895f3660 153 * @param result The custom trigger decision object.
154 * @param type The data block type to use (set to
5d79eb88 155 * kAliHLTDataTypeTObject|kAliHLTDataOriginOut by default).
156 * @param spec The data block specification to use (set to kAliHLTVoidDataSpec
157 * by default).
4654280e 158 * \returns zero on success and negative value on failure. The possible failure
159 * codes are:<br>
160 * -ENOSPC - If there is not enough output buffer space for the trigger decision.<br>
161 * -ENOMSG - If the trigger decision object could not be serialised.<br>
162 * -EINVAL - If the <i>result</i> object is NULL.
5d79eb88 163 */
4654280e 164 int TriggerEvent(
5d79eb88 165 AliHLTTriggerDecision* result,
166 const AliHLTComponentDataType& type = kAliHLTDataTypeTObject|kAliHLTDataOriginOut,
167 AliHLTUInt32_t spec = kAliHLTVoidDataSpec
168 );
169
3d6ea577 170 /**
171 * This method allows one to completely ignore an event. The DoEvent method will
172 * not even generate a false trigger decision if this method is called.
173 */
174 void IgnoreEvent(bool value = true) { fDecisionMade = value; }
175
4654280e 176 /**
177 * Method for finding out the result of the last call to TriggerEvent.
178 * \returns the error code for the last call to TriggerEvent.
179 */
180 int GetLastTriggerEventResult() const { return fTriggerEventResult; }
181
a9670afe 182 /**
183 * Returns the event data structure for the current event.
184 * NULL is returned if this method is not called inside the DoTrigger method.
185 */
186 const AliHLTComponentEventData* GetEventData() const { return fEventData; }
187
188 /**
189 * Returns the trigger data structure for the current event.
190 * NULL is returned if this method is not called inside the DoTrigger method.
191 */
192 AliHLTComponentTriggerData* GetTriggerData() const { return fTriggerData; }
193
4adf50d6 194 /**
195 * Set a bit to 1 in the readout list which will enable that DDL for readout
196 * @param ddlId Equipment ID of DDL to readout, in decimal.
197 */
198 void EnableDDLBit(Int_t ddlId)
199 {
89413559 200 fReadoutList.EnableDDLBit(ddlId);
4adf50d6 201 }
202
203 /**
204 * Set a bit to 0 in the readout list which will exclude that DDL from the readout.
205 * @param ddlId Equipment ID of DDL not to readout, in decimal.
206 */
207 void DisableDDLBit(Int_t ddlId)
208 {
89413559 209 fReadoutList.DisableDDLBit(ddlId);
4adf50d6 210 }
211
212 /**
213 * Set or unset bit in the readout list.
214 * @param ddlId Equipment ID of DDL to set, in decimal.
215 * @param state kTRUE will enable readout of that DDL, kFALSE will disable readout.
216 */
217 void SetDDLBit(Int_t ddlId, Bool_t state)
218 {
89413559 219 fReadoutList.SetDDLBit(ddlId, state);
4adf50d6 220 }
221
1b9a175e 222 /**
223 * Returns the DDL readout list.
224 */
225 const AliHLTReadoutList& GetReadoutList() const { return fReadoutList; }
226
4adf50d6 227 /**
228 * Returns the DDL readout list for modification by hand.
229 */
1b9a175e 230 AliHLTReadoutList& GetReadoutList() { return fReadoutList; }
4adf50d6 231
232 /**
1b9a175e 233 * Sets the readout list object.
234 * \param value The new value to use for the readout list.
235 */
236 void SetReadoutList(const AliHLTReadoutList& value) { fReadoutList = value; }
237
238 /**
239 * Returns the trigger domain object.
4adf50d6 240 */
1b9a175e 241 const AliHLTTriggerDomain& GetTriggerDomain() const { return fTriggerDomain; }
242
243 /**
244 * Returns the trigger domain object for modification.
245 */
246 AliHLTTriggerDomain& GetTriggerDomain() { return fTriggerDomain; }
247
248 /**
249 * Sets the trigger domain object.
250 * \param value The new value to use for the trigger domain.
251 */
252 void SetTriggerDomain(const AliHLTTriggerDomain& value) { fTriggerDomain = value; }
253
254 /**
255 * Returns the trigger description string.
256 */
257 const char* GetDescription() const { return fDescription.Data(); }
258
259 /**
260 * Sets the trigger description string.
261 * \param value The new value to use for the description string.
262 */
263 void SetDescription(const char* value) { fDescription = value; }
acc7214e 264
265 /**
266 * \returns true if the trigger description, trigger domain and readout list
267 * should be cleared for each new event.
268 */
269 bool WillClearInfoForNewEvent() const { return fClearInfo; }
270
271 /**
272 * Sets the flag indicating in the trigger description, trigger domain and
273 * readout list should be cleared for each new event.
274 * \param value The new value to use for the flag.
275 */
276 void ClearInfoForNewEvent(bool value = true) { fClearInfo = value; }
4adf50d6 277
2974f8dc 278 /**
279 * Create the EventDoneData and add the specified readout list
280 * from a Trigger domain object.
281 * @param domain the domain as calculated by the (Global)trigger
282 * @param type type of the readout list, defined by PubSub
0744f75d 283 * 3 monitoring filter
2974f8dc 284 * 4 monitoring filter
0744f75d 285 * 5 monitoring filter
2974f8dc 286 */
287 int CreateEventDoneReadoutFilter(const AliHLTTriggerDomain& domain, unsigned type);
288
a9670afe 289 private:
290
291 /**
292 * Inherited from AliHLTComponent. This method will clear the fDecisionMade flag,
293 * remember the evtData and trigData pointers, then call DoTrigger to invoke the
294 * actual trigger algorithm.
295 */
296 virtual int DoEvent(const AliHLTComponentEventData& evtData, AliHLTComponentTriggerData& trigData);
297
298 using AliHLTProcessor::DoEvent;
299
300 /**
301 * Inherited from AliHLTComponent. This method is deprecated so hide it.
302 * @return kAliHLTMultipleDataType is returned.
303 */
304 virtual AliHLTComponentDataType GetOutputDataType() { return kAliHLTMultipleDataType; };
5d79eb88 305
306 /**
307 * Inherited from AliHLTComponent. This method is deprecated so we hide it.
308 * Rather use the const version of this method which this method calls anyway.
309 * @param list list to receive the output data types.
310 */
311 virtual void GetInputDataTypes(AliHLTComponentDataTypeList& list);
312
a9670afe 313 /**
314 * Inherited from AliHLTComponent. This method is replaced with one that is
315 * symmetric to GetInputDataTypes that returns void, so we make this method
1b9a175e 316 * private. The list will always contain kAliHLTDataTypeTObject, including whatever
317 * values were added by the const version of GetOutputDataTypes.
a9670afe 318 * @param list list to receive the output data types.
319 * @return the number of elements in the list.
320 */
5d79eb88 321 virtual int GetOutputDataTypes(AliHLTComponentDataTypeList& list);
4aa41877 322
1b9a175e 323 const AliHLTComponentEventData* fEventData; //! Event data for the current event. Only valid inside DoTrigger.
324 AliHLTComponentTriggerData* fTriggerData; //! Trigger data for the current event. Only valid inside DoTrigger.
325 bool fDecisionMade; //! Flag indicating if the trigger decision has been made for this trigger yet.
acc7214e 326 bool fClearInfo; //! Flag indicating if fDescription, fReadoutList and fTriggerDomain should be cleared for each new event.
1b9a175e 327 int fTriggerEventResult; //! Result returned by PushBack method in the TriggerEvent method.
328 TString fDescription; //! The description to use for the trigger decision.
329 AliHLTReadoutList fReadoutList; //! The DDL readout list object for the current event being processed.
330 AliHLTTriggerDomain fTriggerDomain; //! The trigger domain object for the current event being processed.
4aa41877 331
a9670afe 332 ClassDef(AliHLTTrigger, 0) // Base class for HLT triggers.
4aa41877 333
334};
335
a9670afe 336#endif // ALIHLTTRIGGER_H
4aa41877 337