]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
applying to the new interface
authorjgrosseo <jgrosseo@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 5 Oct 2006 15:46:26 +0000 (15:46 +0000)
committerjgrosseo <jgrosseo@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 5 Oct 2006 15:46:26 +0000 (15:46 +0000)
SHUTTLE/AliShuttle.cxx
SHUTTLE/AliShuttle.h

index 4d868d15fb3506bbaebfa4cc964eeb1775a395ca..d0fa6de2e9c76ce823c5c122a86c6fc6db9b2c45 100644 (file)
 
 /*
 $Log$
+Revision 1.15  2006/10/02 16:38:39  jgrosseo
+update (alberto):
+fixed memory leaks
+storing of objects that failed to be stored to the grid before
+interfacing of shuttle status table in daq system
+
 Revision 1.14  2006/08/29 09:16:05  jgrosseo
 small update
 
@@ -248,15 +254,13 @@ UInt_t AliShuttle::Store(const AliCDBPath& path, TObject* object,
 }
 
 //______________________________________________________________________________________________
-UInt_t AliShuttle::StoreReferenceData(const AliCDBPath& path, TObject* object,
-               AliCDBMetaData* metaData, Int_t validityStart, Bool_t validityInfinite)
+UInt_t AliShuttle::StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData)
 {
   // Stores a CDB object in the storage for reference data. This objects will not be available during
   // offline reconstrunction. Use this function for reference data only!
   // It calls WriteToCDB function which perform actual storage
 
-       return WriteToCDB(fgkMainRefStorage, fgkLocalRefStorage, path, object,
-                               metaData, validityStart, validityInfinite);
+       return WriteToCDB(fgkMainRefStorage, fgkLocalRefStorage, path, object, metaData);
 
 }
 
index 6a13afd4d065041434f20391fc71ee1e678e2166..ecdde4c2ecdf543394163e58737a3dc4fce28e68 100644 (file)
@@ -51,8 +51,7 @@ public:
 
        virtual UInt_t Store(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData,
                        Int_t validityStart = 0, Bool_t validityInfinite = kFALSE);
-       virtual UInt_t StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData,
-                       Int_t validityStart = 0, Bool_t validityInfinite = kFALSE);
+       virtual UInt_t StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData);
        virtual const char* GetFile(Int_t system, const char* detector,
                const char* id, const char* source);
        virtual TList* GetFileSources(Int_t system, const char* detector, const char* id);