ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Utils/interface/RhoUtilities.h
Revision: 1.2
Committed: Thu May 3 08:45:27 2012 UTC (12 years, 11 months ago) by fabstoec
Content type: text/plain
Branch: MAIN
Changes since 1.1: +5 -5 lines
Log Message:
small update on RhoUtilities (changed default from NONE to DEFAULT)

File Contents

# User Rev Content
1 fabstoec 1.1 #ifndef RHO_UTILITIES_H
2     #define RHO_UTILITIES_H
3    
4     namespace mithep{
5    
6     struct RhoUtilities {
7     enum RhoType {
8 fabstoec 1.2 DEFAULT = 0,
9     MIT_RHO_VORONOI_LOW_ETA, // was RhoLowEta();
10     MIT_RHO_VORONOI_HIGH_ETA, // was Rho();
11     MIT_RHO_RANDOM_LOW_ETA, // was RhoRandomLowEta();
12     MIT_RHO_RANDOM_HIGH_ETA // was RhoRandom();
13 fabstoec 1.1 };
14     };
15     }
16    
17     #endif