StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
SvtMatchedTree.h
1 #ifndef __SvtMatchedTree_H
2 #define __SvtMatchedTree_H
3 #include "StMaker.h"
4 #include "TFile.h"
5 #include "TArrayI.h"
6 #include "TTree.h"
7 class EventT;
8 class SvtMatchedTree : public StMaker {
9  public:
10  SvtMatchedTree(const Char_t *name="SvtMatTree");
11  virtual ~SvtMatchedTree() {}
12  virtual Int_t Init();
13  virtual Int_t Make();
14  virtual Int_t Finish();
15  void SetTree();
16  void Print(Option_t *opt="") const;
17  void SetMinNoHits(Int_t MinNoHits=0) {fMinNoHits = MinNoHits;}
18  void SetpCut(Double_t pCut=0.0) {fpCut = pCut;}
19  void SetOut(const Char_t *Out="Event") {fOut = Out;}
20  void MakeListOfRotations();
21  private:
22  TFile *fFile;
23  TTree *fTree;
24  EventT *fEvent;
25  Int_t fMinNoHits;
26  Double_t fpCut;
27  const Char_t *fOut;
28  ClassDef(SvtMatchedTree,1)
29 };
30 #endif
virtual Int_t Make()
Definition: EventT.h:32
virtual Int_t Finish()