Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:15:11

0001 #ifndef __params_H__
0002 #define __params_H__
0003 
0004 #include <vector>
0005 #include <string>
0006 
0007 #define Nr    16
0008 #define Nphi 128
0009 
0010 #define Nhybrid 14 //we killed one of the sectors as it was sparking to the GEM due to ground issues. 

0011 #define CHhybrid 128
0012 #define Nsrs Nhybrid*CHhybrid
0013 
0014 // Data type to define the zigzag shape...

0015   struct CheveronPad_t 
0016   {
0017     std::string fName;
0018     double fPolyWidth;
0019     int fPolyLayer;
0020     std::vector<double> fX;
0021     std::vector<double> fY;
0022     std::vector<double> fVia;
0023     std::vector<double> fWire;
0024     std::vector<double> r;
0025     std::vector<double> phi;
0026     std::vector<int> ID;
0027   };
0028 
0029 #endif /* __params_H__ */