ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/UHHAnalysis/SFrameTools/include/BaseHists.icc
Revision: 1.2
Committed: Wed Jun 6 15:25:23 2012 UTC (12 years, 10 months ago) by peiffer
Content type: application/vnd.iccprofile
Branch: MAIN
CVS Tags: v1-00, Feb-15-2013-v1, Feb-14-2013, Feb-07-2013-v1, Jan-17-2013-v2, Jan-17-2013-v1, Jan-16-2012-v1, Jan-09-2012-v2, Jan-09-2012-v1, Dec-26-2012-v1, Dec-20-2012-v1, Dec-17-2012-v1, Nov-30-2012-v2, Nov-30-2012-v1, HEAD
Changes since 1.1: +1 -1 lines
Error occurred while calculating annotation data.
Log Message:
remove HBHE, move HTlep to EventCalc, fix includes

File Contents

# Content
1 // Dear emacs, this is -*- c++ -*-
2 // $Id: BaseHists.icc
3
4 #ifndef BaseHists_ICC
5 #define BaseHists_ICC
6
7 // SFrame include(s):
8 #include "SCycleBase.h"
9
10 template< class T >
11 T* BaseHists::Book( const T& histo ) throw( SError ) {
12
13 T* ret = SCycleBaseHist::template Book(histo, m_name.Data());
14 return ret;
15 }
16
17 template< class T >
18 T* BaseHists::Retrieve( const char* name ) throw( SError ) {
19
20 T* ret = SCycleBaseHist::template Retrieve< T >(name, m_name.Data());
21 return ret;
22 }
23
24 #endif // BaseHists_ICC