]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliTagAnalysis.h
Container classes for the PHOS reconstruction parameters.
[u/mrichter/AliRoot.git] / STEER / AliTagAnalysis.h
... / ...
CommitLineData
1#ifndef ALITAGANALYSIS_H
2#define ALITAGANALYSIS_H
3/* See cxx source for full Copyright notice */
4
5
6/* $Id$ */
7
8//-------------------------------------------------------------------------
9// Class AliTagAnalysis
10// This is the AliTagAnalysis class for the tag analysis
11//
12// Origin: Panos Christakoglou, UOA-CERN, Panos.Christakoglou@cern.ch
13//-------------------------------------------------------------------------
14
15
16
17//////////////////////////////////////////////////////////////////////////
18// //
19// AliTagAnalysis //
20// //
21// Implementation of the tag analysis mechanism. //
22// //
23//////////////////////////////////////////////////////////////////////////
24
25
26//ROOT
27#include <TObject.h>
28
29class AliEventTag;
30class TChain;
31class AliEventTagCuts;
32class AliRunTagCuts;
33class TGridResult;
34class TTreeFormula;
35
36//____________________________________________________//
37class AliTagAnalysis : public TObject {
38 public:
39 AliTagAnalysis();
40 ~AliTagAnalysis();
41
42 Bool_t AddTagsFile(const char *alienUrl);
43 void ChainLocalTags(const char *dirname);
44 void ChainGridTags(TGridResult *result);
45
46 TChain *QueryTags(AliRunTagCuts *RunTagCuts, AliEventTagCuts *EvTagCuts);
47 TChain *QueryTags(const char *fRunCut, const char *fEventCut);
48
49 Bool_t CreateXMLCollection(const char* name, AliRunTagCuts *RunTagCuts, AliEventTagCuts *EvTagCuts);
50 Bool_t CreateXMLCollection(const char* name, const char *fRunCut, const char *fEventCut);
51
52 TChain *GetInputChain(const char* system, const char* global, const char* wn);
53
54 //____________________________________________________//
55 protected:
56 TGridResult *ftagresult; //the results from the tag grid query
57 TString fTagDirName; //the location of the locally stored tags
58
59 TChain *fChain; //tag chain
60
61 //____________________________________________________//
62 private:
63 AliTagAnalysis(const AliTagAnalysis & source);
64 AliTagAnalysis & operator=(const AliTagAnalysis & source);
65
66 ClassDef(AliTagAnalysis,0)
67};
68
69#endif
70