ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/FGolf/Tools/eff2.h
Revision: 1.1
Committed: Mon Nov 8 03:15:09 2010 UTC (14 years, 5 months ago) by fgolf
Content type: text/plain
Branch: MAIN
CVS Tags: ss_summer2011approvalV2, ss_summer2011approval, synchMay2011v1, ss20May2011, HEAD
Log Message:
basically just divides two histograms

File Contents

# User Rev Content
1 fgolf 1.1 #ifndef EFF2_H
2     #define EFF2_H
3    
4     #include "TH2.h"
5    
6     TH2F* eff2(TH2F* h1, TH2F* h2, const char* name="eff");
7     TH2F* eff2(const char* name1, const char* name2, const char* name="eff");
8    
9     #endif