File indexing completed on 2023-10-25 09:40:05
0001 #ifndef DataFormats_TrackerCommon_SiStripSubStructure_h
0002 #define DataFormats_TrackerCommon_SiStripSubStructure_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023 #include <cstdint>
0024 #include <vector>
0025
0026 class TrackerTopology;
0027
0028 namespace SiStripSubStructure {
0029 void getTIBDetectors(const std::vector<uint32_t> &inputDetRawIds,
0030 std::vector<uint32_t> &tibDetRawIds,
0031 const TrackerTopology *trackerTopology,
0032 uint32_t layer = 0,
0033 uint32_t bkw_frw = 0,
0034 uint32_t int_ext = 0,
0035 uint32_t string = 0);
0036
0037 void getTIDDetectors(const std::vector<uint32_t> &inputDetRawIds,
0038 std::vector<uint32_t> &tidDetRawIds,
0039 const TrackerTopology *trackerTopology,
0040 uint32_t side = 0,
0041 uint32_t wheel = 0,
0042 uint32_t ring = 0,
0043 uint32_t ster = 0);
0044
0045 void getTOBDetectors(const std::vector<uint32_t> &inputDetRawIds,
0046 std::vector<uint32_t> &tobDetRawIds,
0047 const TrackerTopology *trackerTopology,
0048 uint32_t layer = 0,
0049 uint32_t bkw_frw = 0,
0050 uint32_t rod = 0);
0051
0052 void getTECDetectors(const std::vector<uint32_t> &inputDetRawIds,
0053 std::vector<uint32_t> &tecDetRawIds,
0054 const TrackerTopology *trackerTopology,
0055 uint32_t side = 0,
0056 uint32_t wheel = 0,
0057 uint32_t petal_bkw_frw = 0,
0058 uint32_t petal = 0,
0059 uint32_t ring = 0,
0060 uint32_t ster = 0);
0061 };
0062 #endif