Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:31

0001 /****************************************************************************
0002 *
0003 * Authors:
0004 *   Jan Kaspar (jan.kaspar@gmail.com)
0005 *
0006 ****************************************************************************/
0007 
0008 #ifndef Geometry_VeryForwardGeometryBuilder_CTPPSDDDNames_H
0009 #define Geometry_VeryForwardGeometryBuilder_CTPPSDDDNames_H
0010 
0011 #include <string>
0012 
0013 /// DDD names of sensors
0014 const std::string DDD_TOTEM_RP_SENSOR_NAME = "RP_Silicon_Detector";
0015 const std::string DDD_CTPPS_PIXELS_SENSOR_NAME = "RPixWafer";
0016 const std::string DDD_CTPPS_PIXELS_SENSOR_NAME_2x2 = "RPixWafer2x2";
0017 const std::string DDD_CTPPS_PIXELS_SENSOR_TYPE_2x2 = "2x2";
0018 const std::string DDD_CTPPS_DIAMONDS_SEGMENT_NAME = "CTPPS_Diamond_Segment";
0019 const std::string DDD_CTPPS_UFSD_SEGMENT_NAME = "CTPPS_UFSD_Segment";
0020 const std::string DDD_TOTEM_TIMING_SENSOR_TMPL = "UFSD_ch(\\d+)";
0021 
0022 /// DDD names of RP volumes
0023 const std::string DDD_TOTEM_RP_RP_NAME = "RP_box_primary_vacuum";
0024 const std::string DDD_CTPPS_PIXELS_RP_NAME =
0025     "RP_box_primary_vacuum";  // distiction between strip and pixel RPs is done based on copyNumbers
0026 const std::string DDD_CTPPS_DIAMONDS_RP_NAME = "CTPPS_Diamond_Main_Box";
0027 const std::string DDD_TOTEM_TIMING_RP_NAME = "TotemTiming_Main_Box";
0028 
0029 #endif