]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/trigger/AliHLTTriggerSelectiveReadoutComponent.h
commit from Jochen
[u/mrichter/AliRoot.git] / HLT / trigger / AliHLTTriggerSelectiveReadoutComponent.h
index b9ca366b0b8e4cb1b2b2705fce9ad1d55c7a25ad..6e551f811f75b449bdbadc61c5c1ed464208dea4 100644 (file)
@@ -34,7 +34,7 @@
  * forwarded and Bit for this readout partition in ReadoutList will be set for DAQ readout.
  *
  * The component has the following component arguments:
- * -detector <TPC|PHOS|TRD|MUON>    : Select Detector for discarding raw data.
+ * -detector <TPC |PHOS|TRD |MUON>  : Select Detector for discarding raw data, use 4 Char_t origin format.
  * -enableThreshold <size>          : Enables threshold on size ( default is kFALSE )
  * -threshold < Int_t threshold[6]> : Size threshold in Byte for different patches for TPC -> This will be disappear later on, will be taken from xCDB entry.
  *
@@ -80,7 +80,7 @@ class AliHLTTriggerSelectiveReadoutComponent : public AliHLTProcessor
 
  private:
   /** size of the threshold array  */
-  static const int fkNThreshold = 6;
+  static const int fkNThreshold = 6;           // see above
 
   /** copy constructor prohibited */
   AliHLTTriggerSelectiveReadoutComponent(const AliHLTTriggerSelectiveReadoutComponent&);
@@ -88,14 +88,14 @@ class AliHLTTriggerSelectiveReadoutComponent : public AliHLTProcessor
   /** assignment operator prohibited */
   AliHLTTriggerSelectiveReadoutComponent& operator=(const AliHLTTriggerSelectiveReadoutComponent&);
 
-  /** Detector name */
-  TString fDetector; //! transient
+  /** Detector name in HLT origin format */
+  TString fDetector;                           //! transient
   
   /** Enable of the size Threshold */
-  Bool_t fEnableThresholdSize; //! transient
+  Bool_t fEnableThresholdSize;                 //! transient
   
   /** Threshold in Bytes for each a readout partition */
-  AliHLTUInt32_t fThreshold[fkNThreshold]; //! transient
+  AliHLTUInt32_t fThreshold[fkNThreshold];     //! transient
 
   ClassDef(AliHLTTriggerSelectiveReadoutComponent, 0);