StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjSpinTree.h
1 // -*- mode: c++;-*-
2 // $Id: StjSpinTree.h,v 1.1 2008/11/05 05:48:26 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJSPINTREE_H
5 #define STJSPINTREE_H
6 
7 #include <StjSpin.h>
8 
9 class StjSpinReader;
10 
11 class StjSpinTree : public StjSpin {
12 
13 public:
14  StjSpinTree(StjSpinReader* reader)
15  : _reader(reader) { }
16  virtual ~StjSpinTree() { }
17 
18 private:
19 
20  int runNumber();
21  int eventId();
22  int bx7();
23  int bx48();
24  int spin4();
25  int bbcTimebin();
26  double vertexZ();
27 
28  StjSpinReader* _reader;
29 
30  ClassDef(StjSpinTree, 1)
31 
32 };
33 
34 #endif // STJSPINTREE_H
Definition: StjSpin.h:9