ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/dasu/UltraFastSim/UFSDataStore.h
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
Error occurred while calculating annotation data.
Log Message:
Major migration -- moving btagging out of UFS - make it so it works at analysis level rather than simulation

File Contents

# Content
1 #ifndef UFSDataStore_H
2 #define UFSDataStore_H
3
4 class EventData;
5 class TFile;
6 class TTree;
7
8 class UFSDataStore {
9 public:
10 UFSDataStore(const char *name, EventData *ufs);
11 ~UFSDataStore();
12 bool run();
13 private:
14 UFSDataStore();
15 EventData *ufs;
16 TFile *outFile;
17 TTree *tree;
18 };
19
20 #endif