]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliTagCreator.h
Completely Updated (Mario Sitta)
[u/mrichter/AliRoot.git] / STEER / AliTagCreator.h
index 8225ec19de09c76ea774cc43dee04d4543e682b6..49aa1e590a0a282e98d78a260cabcca93307f97a 100644 (file)
@@ -26,7 +26,6 @@
 //ROOT
 #include <TObject.h>
 
-class TFile;
 class TGridResult;
 
 
@@ -38,28 +37,19 @@ class AliTagCreator : public TObject {
   ~AliTagCreator(); 
 
   //____________________________________________________//
-  Bool_t MergeTags();
-  Bool_t MergeTags(TGridResult *result);
+  Bool_t MergeTags(const char* type);
+  Bool_t MergeTags(const char* type, TGridResult *result);
 
   void SetSE(const char *se){fSE = se;}
   void SetStorage(Int_t storage);
   void SetGridPath(const char *gridpath){fgridpath = gridpath;}
 
-  Bool_t ReadGridCollection(TGridResult *result);
-  Bool_t ReadLocalCollection(const char *localpath);
-  Bool_t ReadCAFCollection(const char *filename);
-
-  void CreateAODTags(Int_t fFirstEvent, Int_t fLastEvent);
-
   //____________________________________________________//
  protected:
   TString fSE;   //the defined storage element
   TString fgridpath;   //the alien location of the tag files
   Int_t fStorage;  //0:local - 1:grid
-  
-  void CreateTag(TFile* file, const char *guid, const char *md5, const char *turl, Long64_t size, Int_t Counter);
-  void CreateTag(TFile* file, const char *filepath, Int_t Counter);
+   
   ClassDef(AliTagCreator,0)  
 };