]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
- added implementation of GetOCDBObjectDescription
authorkkanaki <kkanaki@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 4 May 2010 13:01:32 +0000 (13:01 +0000)
committerkkanaki <kkanaki@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 4 May 2010 13:01:32 +0000 (13:01 +0000)
HLT/TPCLib/AliHLTTPCTrackHistoComponent.cxx
HLT/TPCLib/AliHLTTPCTrackHistoComponent.h

index 8add924399ac60b4354f583d6d5eee57cac988d5..804d788cfedd380bfafb565aa0f3504301695e95 100644 (file)
@@ -370,3 +370,9 @@ int AliHLTTPCTrackHistoComponent::ScanConfigurationArgument(int argc, const char
   }    
   return -EINVAL;
 }
+
+void AliHLTTPCTrackHistoComponent::GetOCDBObjectDescription( TMap* const targetMap){
+// Get a list of OCDB object description needed for the particular component
+  if (!targetMap) return;
+  targetMap->Add(new TObjString("HLT/ConfigTPC/TPCTrackHisto"), new TObjString("component arguments for setting the size of the filled ntuples and the event modulo for the mean multiplicity distribution"));
+}
index 88e9f6bfd471dae921ccbdd1f3f485d180daf29f..982259c050e808f7ab8da565abb9f5d32f0ed05a 100644 (file)
@@ -79,6 +79,8 @@ public:
   virtual void GetOutputDataSize( unsigned long& constBase, double& inputMultiplier );
   /** interface function, see AliHLTComponent for description */
   AliHLTComponent* Spawn();
+  /** interface function, see @ref AliHLTComponent for description */
+  void GetOCDBObjectDescription( TMap* const targetMap);
 
 protected: