]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliESDTagCreator.h
In trigger QA:
[u/mrichter/AliRoot.git] / STEER / AliESDTagCreator.h
index 6f2e2bae3a886cf25a57355bde30ad36e054362f..9e2eb34201e66dcd84bc9dee5f90e6c07a123f65 100644 (file)
 #include <TSystem.h>
 class TChain;
 class TList;
+class TMap;
 
 #include <AliTagCreator.h>
 
 class TFile;
 class TGridResult;
 
+class AliGRPObject;
+class AliEventTag;
 
 //___________________________________________________________________________
 class AliESDTagCreator : public AliTagCreator {
@@ -41,7 +44,9 @@ class AliESDTagCreator : public AliTagCreator {
   AliESDTagCreator();
   ~AliESDTagCreator(); 
 
-  void CreateESDTags(Int_t fFirstEvent, Int_t fLastEvent, TList *grpList);
+  void CreateESDTags(Int_t fFirstEvent, Int_t fLastEvent, AliGRPObject *grpData, ULong_t * qa, Bool_t * es, Int_t qalength, Int_t eslength);
+  void CreateESDTagsFullRun(TTree *chain, AliGRPObject *grpData, ULong_t * qa, Bool_t * es, Int_t qalength, Int_t eslength);
+  void CreateESDRunTagSummary(TTree *chain);
 
   void SetInactiveBranches(const char* branches) {fBranches = branches;}
 
@@ -53,15 +58,21 @@ class AliESDTagCreator : public AliTagCreator {
   void CreateTag(TChain *chain, const char* type);
   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);
+
+  void FillEventTag(TTree *chain, AliEventTag *evTag, Int_t iEventNumber, AliESDEvent *esd);
+
  private:
   void SwitchOffBranches() const;
- private:
+  AliESDTagCreator(const AliESDTagCreator& creator);             
+  AliESDTagCreator& operator=(const AliESDTagCreator& creator);
+  
   TChain *fChain;     //chain of esd files
   TList  *fGUIDList;  //TList of guid TObjString
   TList  *fMD5List;   //TList of md5 TObjString
   TList  *fTURLList;  //TList of turl TObjString
   TString fBranches;  //List of branches to be switched off (separated by space
   MemInfo_t *meminfo; //mem info
+
   ClassDef(AliESDTagCreator,0)  
 };