00001
00002
00003
00004 #ifndef STJSPINTREE_H
00005 #define STJSPINTREE_H
00006
00007 #include <StjSpin.h>
00008
00009 class StjSpinReader;
00010
00011 class StjSpinTree : public StjSpin {
00012
00013 public:
00014 StjSpinTree(StjSpinReader* reader)
00015 : _reader(reader) { }
00016 virtual ~StjSpinTree() { }
00017
00018 private:
00019
00020 int runNumber();
00021 int eventId();
00022 int bx7();
00023 int bx48();
00024 int spin4();
00025 int bbcTimebin();
00026 double vertexZ();
00027
00028 StjSpinReader* _reader;
00029
00030 ClassDef(StjSpinTree, 1)
00031
00032 };
00033
00034 #endif // STJSPINTREE_H