Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:10

0001 #ifndef RecoAlgos_Superclustere_h
0002 #define RecoAlgos_Superclustere_h
0003 
0004 #include "DataFormats/EgammaReco/interface/SuperCluster.h"
0005 
0006 struct SuperClusterEt {
0007   typedef reco::SuperCluster type;
0008   double operator()(const reco::SuperCluster& c) const { return c.energy() * sin(c.position().theta()); }
0009 };
0010 
0011 #endif