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

index 5777779734d5eddcd008a57915629f83e8cce78c..af9481e06079bb56e3b35c5ce86408bed004d612 100644 (file)
@@ -400,3 +400,9 @@ void AliHLTTPCHWClusterTransformComponent::PrintDebug(AliHLTUInt32_t *buffer, In
     printf("\n");
   }
 } // end of PrintDebug
+
+void AliHLTTPCHWClusterTransformComponent::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/TPCHWClusterTransform"), new TObjString("component argument for the charge threshold"));
+}
index 24e54d91518e0af583b66b8ab0cf72d5c82eb646..814b5f62516679a4007a0743b2b568de334a3bdc 100644 (file)
@@ -117,6 +117,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);
 
   void PrintDebug(AliHLTUInt32_t * buffer, Int_t size);