Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:43:26

0001 #ifndef CalibrationIsolatedParticlesFindEtaPhi_h
0002 #define CalibrationIsolatedParticlesFindEtaPhi_h
0003 
0004 // system include files
0005 #include <memory>
0006 #include <cmath>
0007 #include <string>
0008 #include <map>
0009 #include <vector>
0010 
0011 namespace spr {
0012 
0013   // For even number of NxN array
0014   struct EtaPhi {
0015     EtaPhi() { ntrys = 0; }
0016     int ietaE[4], ietaW[4], iphiN[4], iphiS[4];
0017     int ntrys;
0018   };
0019 
0020   EtaPhi getEtaPhi(int ieta, int iphi, bool debug = false);
0021 
0022 }  // namespace spr
0023 
0024 #endif