Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:52

0001 #ifndef ECALCOMMON_HH
0002 #define ECALCOMMON_HH
0003 
0004 #include <stdexcept>
0005 
0006 /**
0007  *  General-purpose detector related functions
0008  */
0009 class EcalCommon {
0010   /******************\
0011   -  public methods  -
0012   \******************/
0013 
0014 public:
0015   /**
0016    *  Convert a supermodule crystal number to a trigger tower number
0017    */
0018   static int crystalToTriggerTower(int xtal) noexcept(false);
0019 };
0020 
0021 #endif