ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/EJetMet_CU/ProdTutorial/CUcollections/interface/CUsupercluster.h
Revision: 1.2
Committed: Tue May 4 12:59:40 2010 UTC (14 years, 11 months ago) by puigh
Content type: text/plain
Branch: MAIN
CVS Tags: V01-23, V01-22, V01-21, V01-20, V01-19, V01-18, V01-17, V01-16, V01-15, V01-14, V01-13, V01-12, V01-11, HEAD
Changes since 1.1: +1 -1 lines
Log Message:
remove int c

File Contents

# Content
1 #ifndef ProdTutorial_CUsupercluster_h
2 #define ProdTutorial_CUsupercluster_h
3
4 #include <vector>
5
6
7 // a simple class
8 struct CUsupercluster
9 {
10 explicit CUsupercluster(double v):energy(v),et(v),ex(v),ey(v),ez(v),phi(v),eta(v),theta(v) { }
11 CUsupercluster():energy(-99),et(-99),ex(-99),ey(-99),ez(-99),phi(-99),eta(-99),theta(-99) { }
12 double energy,et,ex,ey,ez,phi,eta,theta;
13
14 };
15
16 // this is our new product, it is simply a
17 // collection of CUsupercluster held in an std::vector
18 typedef std::vector<CUsupercluster> CUsuperclusterCollection;
19
20 #endif