Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef ECALPositionCalculator_h
0002 #define ECALPositionCalculator_h
0003 
0004 #include "DataFormats/Math/interface/Vector3D.h"
0005 #include "DataFormats/Math/interface/Point3D.h"
0006 
0007 class MagneticField;
0008 
0009 namespace egammaTools {
0010   double ecalPhi(const MagneticField &magField,
0011                  const math::XYZVector &momentum,
0012                  const math::XYZPoint &vertex,
0013                  const int charge);
0014   double ecalEta(const math::XYZVector &momentum, const math::XYZPoint &vertex);
0015 };  // namespace egammaTools
0016 
0017 #endif