]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliTagCreator.h
Bug fix
[u/mrichter/AliRoot.git] / STEER / AliTagCreator.h
index ba8776bdac7891a57b36bc02291ed4eb578a49f3..de2836fbdf5dc5033cafccfb18a6cc8ed30e7d6e 100644 (file)
@@ -30,25 +30,33 @@ class TFile;
 class TGridResult;
 
 
+//___________________________________________________________________________
 class AliTagCreator : public TObject {
 
  public:
   AliTagCreator();
   ~AliTagCreator(); 
 
+  //____________________________________________________//
   Bool_t MergeTags();
+  Bool_t MergeTags(TGridResult *result);
 
   void SetSE(const char *se){fSE = se;}
   void SetStorage(Int_t storage);
   void SetGridPath(const char *gridpath){fgridpath = gridpath;}
-  Bool_t ReadESDCollection(TGridResult *result);
 
+  Bool_t ReadGridCollection(TGridResult *result);
+  Bool_t ReadLocalCollection(const char *localpath);
+  Bool_t ReadCAFCollection(const char *filename);
+
+  //____________________________________________________//
  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)  
 };