ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/dasu/UltraFastSim/UFSDataStore.h
Revision: 1.1
Committed: Fri Feb 25 15:37:18 2011 UTC (14 years, 2 months ago) by dasu
Content type: text/plain
Branch: MAIN
CVS Tags: v2
Log Message:
Moved to storing the entire UFS data

File Contents

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