Revision: | 1.2 |
Committed: | Thu Jun 16 04:18:44 2011 UTC (13 years, 11 months ago) by dasu |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.1: | +3 -3 lines |
Log Message: | Major migration -- moving btagging out of UFS - make it so it works at analysis level rather than simulation |
# | User | Rev | Content |
---|---|---|---|
1 | dasu | 1.1 | #ifndef UFSDataStore_H |
2 | #define UFSDataStore_H | ||
3 | |||
4 | dasu | 1.2 | class EventData; |
5 | dasu | 1.1 | class TFile; |
6 | class TTree; | ||
7 | |||
8 | class UFSDataStore { | ||
9 | public: | ||
10 | dasu | 1.2 | UFSDataStore(const char *name, EventData *ufs); |
11 | dasu | 1.1 | ~UFSDataStore(); |
12 | bool run(); | ||
13 | private: | ||
14 | UFSDataStore(); | ||
15 | dasu | 1.2 | EventData *ufs; |
16 | dasu | 1.1 | TFile *outFile; |
17 | TTree *tree; | ||
18 | }; | ||
19 | |||
20 | #endif |