/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/MuonDetId/interface/CSCIndexer.h
427 строк
17 KB
Shahzad Malik Muzaffar
[SIMULATION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:10
05 сен 2024, 17:10
321a48b
Код
Авторство
О чём код?
#ifndef MuonDetId_CSCIndexer_h #define MuonDetId_CSCIndexer_h /** \class CSCIndexer * Creates a linear index for various sublevels of the endcap muon CSC system. * * It supplies a linear index for: * 1. Each chamber of the CSC system: range 1-468 (CSC system as installed 2008) 469-540 for ME42 <br> * 2. Each layer of the CSC system: range 1-2808 (CSCs 2008) 2809-3240 for ME42 <br> * 3. Each strip channel of the CSC system: range 1-217728 (CSCs 2008) 217729-252288 for ME42 <br> * 4. Each Buckeye chip (1 for each layer in each CFEB)of the CSC system: range 1-13608 (CSCs 2008) 13609-15768 for ME42 <br> * 5. Each Gas Gain Sector (1 for each [CFEB*HV segment] combination in each layer): range 1-45144 (CSCs 2008) 45145-55944 for ME42 <br> * * The chamber and layer may be specified by CSCDetId or labels for endcap, station, ring, chamber, layer. * The strip channel is a value 1-80 (or 64: ME13 chambers have only 64 channels.) * The chip number is a value 1-30 (or 24: ME13 chambers have only 24 chips.) * * The main user interface is the set of functions <br> * chamberIndex(.) <br> * layerIndex(.) <br> * stripChannelIndex(.) <br> * chipIndex(.) <br> * But the other functions are public since they may be useful in contexts other than for * Conditions Data for which the above functions are intended. * * \warning This class is hard-wired for the CSC system at start-up of CMS in 2008. * with rings ME11, ME12, ME13, ME21, ME22, ME31, ME32, ME41 totalling 234 chambers per endcap. * But ME42 is appended (to permit simulation studies), so the chamber order is <br> * +z ME11, ME12, ME13, ME21, ME22, ME31, ME32, ME41, <br> * -z ME11, ME12, ME13, ME21, ME22, ME31, ME32, ME41, <br> * +z ME42, -z ME42 <br> * * \warning This uses magic numbers galore!! * * \warning EVERY LABEL COUNTS FROM ONE NOT ZERO. * */ #include <DataFormats/MuonDetId/interface/CSCDetId.h> #include <vector> #include <iosfwd> #include <utility> // for pair class CSCIndexer { public: // typedef unsigned short int IndexType; // typedef unsigned int LongIndexType; typedef uint16_t IndexType; typedef uint32_t LongIndexType; CSCIndexer() {} ~CSCIndexer() {} /** * Linear index to label each CSC in CSC system. * Argument is the CSCDetId of some CSCChamber. * * Output is 1-468 (CSCs 2008) 469-540 (ME42) * * WARNING: Do not input ME1a values (i.e. ring '4'): does not consider ME1a and ME1b to be separate, * No sanity checking on input value: if you supply an ME1a CSCDetId then you'll get nonsense. */ IndexType chamberIndex(const CSCDetId& id) const { return chamberIndex(id.endcap(), id.station(), id.ring(), id.chamber()); } /** * Linear index to label each hardware layer in CSC system. * Argument is the CSCDetId of some CSCLayer. * * Output is 1-2808 (CSCs 2008) 2809-3240 (ME42) * * WARNING: Do not input ME1a values (i.e. ring '4'): does not consider ME1a and ME1b to be separate, * No sanity checking on input value: if you supply an ME1a CSCDetId then you'll get nonsense. */ IndexType layerIndex(const CSCDetId& id) const { return layerIndex(id.endcap(), id.station(), id.ring(), id.chamber(), id.layer()); } /** * Starting index for first chamber in ring 'ir' of station 'is' in endcap 'ie', * in range 1-468 (CSCs 2008) or 469-540 (ME42). */ IndexType startChamberIndexInEndcap(IndexType ie, IndexType is, IndexType ir) const { const IndexType nschin[24] = {1, 37, 73, 109, 127, 0, 163, 181, 0, 217, 469, 0, 235, 271, 307, 343, 361, 0, 397, 415, 0, 451, 505, 0}; return nschin[(ie - 1) * 12 + (is - 1) * 3 + ir - 1]; } /** * Linear index for chamber 'ic' in ring 'ir' of station 'is' in endcap 'ie', * in range 1-468 (CSCs 2008) or 469-540 (ME42) */ IndexType chamberIndex(IndexType ie, IndexType is, IndexType ir, IndexType ic) const { return startChamberIndexInEndcap(ie, is, ir) + ic - 1; // -1 so start index _is_ ic=1 } /** * Linear index for layer 'il' of chamber 'ic' in ring 'ir' of station 'is' in endcap 'ie', * in range 1-2808 (CSCs 2008) or 2809-3240 (ME42). */ IndexType layerIndex(IndexType ie, IndexType is, IndexType ir, IndexType ic, IndexType il) const { const IndexType layersInChamber = 6; return (chamberIndex(ie, is, ir, ic) - 1) * layersInChamber + il; } /** * How many rings are there in station is=1, 2, 3, 4 ? * * BEWARE! Includes ME42 so claims 2 rings in station 4. There is only 1 at CSC installation 2008. */ static IndexType ringsInStation(IndexType is) { const IndexType nrins[5] = {0, 3, 2, 2, 2}; // rings per station return nrins[is]; } /** * How many chambers are there in ring ir of station is? * * Works for ME1a (ring 4 of ME1) too. */ static IndexType chambersInRingOfStation(IndexType is, IndexType ir) { IndexType nc = 36; // most rings have 36 chambers if (is > 1 && ir < 2) nc = 18; // but 21, 31, 41 have 18 return nc; } /** * Number of strip channels per layer in a chamber in ring ir of station is. * * Station label range 1-4, Ring label range 1-3. * * WARNING: ME1a channels are the last 16 of the 80 total in each layer of an ME11 chamber, * and an input ir=4 is invalid and will give nonsense. <br> * Considers ME42 as standard 80-strip per layer chambers. */ IndexType stripChannelsPerLayer(IndexType is, IndexType ir) const { const IndexType nSCinC[12] = {80, 80, 64, 80, 80, 0, 80, 80, 0, 80, 80, 0}; return nSCinC[(is - 1) * 3 + ir - 1]; } /** * Linear index for 1st strip channel in ring 'ir' of station 'is' in endcap 'ie'. * * Endcap label range 1-2, Station label range 1-4, Ring label range 1-3. * * WARNING: ME1a channels are the last 16 of the 80 total in each layer of an ME11 chamber, * and an input ir=4 is invalid and will give nonsense. */ LongIndexType stripChannelStart(IndexType ie, IndexType is, IndexType ir) const { // These are in the ranges 1-217728 (CSCs 2008) and 217729-252288 (ME42). // There are 1-108884 channels per endcap (CSCs 2008) and 17280 channels per endcap (ME42). // Start of -z channels (CSCs 2008) is 108864 + 1 = 108865 // Start of +z (ME42) is 217728 + 1 = 217729 // Start of -z (ME42) is 217728 + 1 + 17280 = 235009 const LongIndexType nStart[24] = {1, 17281, 34561, 48385, 57025, 0, 74305, 82945, 0, 100225, 217729, 0, 108865, 126145, 143425, 157249, 165889, 0, 183169, 191809, 0, 209089, 235009, 0}; return nStart[(ie - 1) * 12 + (is - 1) * 3 + ir - 1]; } /** * Linear index for strip channel istrip in layer 'il' of chamber 'ic' of ring 'ir' * in station 'is' of endcap 'ie'. * * Output is 1-217728 (CSCs 2008) or 217729-252288 (ME42). * * WARNING: Use at your own risk! You must input labels within hardware ranges. * No trapping on out-of-range values! */ LongIndexType stripChannelIndex( IndexType ie, IndexType is, IndexType ir, IndexType ic, IndexType il, IndexType istrip) const { return stripChannelStart(ie, is, ir) + ((ic - 1) * 6 + il - 1) * stripChannelsPerLayer(is, ir) + (istrip - 1); } /** * Linear index for strip channel 'istrip' in layer labelled by CSCDetId 'id'. * * Output is 1-217728 (CSCs 2008) or 217729-252288 (ME42). * * WARNING: Use at your own risk! The supplied CSCDetId must be a layer id. * No trapping on out-of-range values! */ LongIndexType stripChannelIndex(const CSCDetId& id, IndexType istrip) const { return stripChannelIndex(id.endcap(), id.station(), id.ring(), id.chamber(), id.layer(), istrip); } /** * Number of Buckeye chips per layer in a chamber in ring ir of station is. * * Station label range 1-4, Ring label range 1-3. * * WARNING: ME1a channels are the last 1 of the 5 total in each layer of an ME11 chamber, * and an input ir=4 is invalid and will give nonsense. <br> * Considers ME42 as standard 5 chip per layer chambers. */ IndexType chipsPerLayer(IndexType is, IndexType ir) const { const IndexType nCinL[12] = {5, 5, 4, 5, 5, 0, 5, 5, 0, 5, 5, 0}; return nCinL[(is - 1) * 3 + ir - 1]; } /** * Linear index for 1st Buckey chip in ring 'ir' of station 'is' in endcap 'ie'. * * Endcap label range 1-2, Station label range 1-4, Ring label range 1-3. * * WARNING: ME1a channels are the last 1 of the 5 chips total in each layer of an ME11 chamber, * and an input ir=4 is invalid and will give nonsense. */ IndexType chipStart(IndexType ie, IndexType is, IndexType ir) const { // These are in the ranges 1-13608 (CSCs 2008) and 13609-15768 (ME42). // There are 1-6804 chips per endcap (CSCs 2008) and 1080 channels per endcap (ME42). // Start of -z channels (CSCs 2008) is 6804 + 1 = 6805 // Start of +z (ME42) is 13608 + 1 = 13609 // Start of -z (ME42) is 13608 + 1 + 1080 = 14689 const IndexType nStart[24] = {1, 1081, 2161, 3025, 3565, 0, 4645, 5185, 0, 6265, 13609, 0, 6805, 7885, 8965, 9829, 10369, 0, 11449, 11989, 0, 13069, 14689, 0}; return nStart[(ie - 1) * 12 + (is - 1) * 3 + ir - 1]; } /** * Linear index for Buckeye chip 'ichip' in layer 'il' of chamber 'ic' of ring 'ir' * in station 'is' of endcap 'ie'. * * Output is 1-13608 (CSCs 2008) or 13609-15768 (ME42). * * WARNING: Use at your own risk! You must input labels within hardware ranges. * No trapping on out-of-range values! */ IndexType chipIndex(IndexType ie, IndexType is, IndexType ir, IndexType ic, IndexType il, IndexType ichip) const { //printf("ME%d/%d/%d/%d layer %d chip %d chipindex %d\n",ie,is,ir,ic,il,ichip,chipStart(ie,is,ir)+( (ic-1)*6 + il - 1 )*chipsPerLayer(is,ir) + (ichip-1)); return chipStart(ie, is, ir) + ((ic - 1) * 6 + il - 1) * chipsPerLayer(is, ir) + (ichip - 1); } /** * Linear index for Buckeye chip 'ichip' in layer labelled by CSCDetId 'id'. * * Output is 1-13608 (CSCs 2008) or 13609-15768 (ME42). * * WARNING: Use at your own risk! The supplied CSCDetId must be a layer id. * No trapping on out-of-range values! */ IndexType chipIndex(const CSCDetId& id, IndexType ichip) const { return chipIndex(id.endcap(), id.station(), id.ring(), id.chamber(), id.layer(), ichip); } /** * Linear index for Buckeye chip processing strip 'istrip'. * * Output is 1-5. * * WARNING: Use at your own risk! The supplied CSCDetId must be a strip id 1-80 * ME1/1a strips must be 65-80 * No trapping on out-of-range values! */ IndexType chipIndex(IndexType istrip) const { return (istrip - 1) / 16 + 1; } /** * Number of HV segments per layer in a chamber in ring ir of station is. * * Station label range 1-4, Ring label range 1-3. * * WARNING: ME1a channels are the last 1 of the 5 total in each layer of an ME11 chamber, * and an input ir=4 is invalid and will give nonsense. <br> */ IndexType hvSegmentsPerLayer(IndexType is, IndexType ir) const { const IndexType nSinL[12] = {1, 3, 3, 3, 5, 0, 3, 5, 0, 3, 5, 0}; return nSinL[(is - 1) * 3 + ir - 1]; } /** * Number of Gas Gain sectors per layer in a chamber in ring ir of station is. * * Station label range 1-4, Ring label range 1-3. * * WARNING: ME1a channels are the last 1 of the 5 total in each layer of an ME11 chamber, * and an input ir=4 is invalid and will give nonsense. <br> */ IndexType sectorsPerLayer(IndexType is, IndexType ir) const { return chipsPerLayer(is, ir) * hvSegmentsPerLayer(is, ir); } /** * Linear index for HV segment * * Output is 1-5. * * WARNING: Use at your own risk! The supplied CSCDetId must be chamber station, ring, and wire. * No trapping on out-of-range values! */ IndexType hvSegmentIndex(IndexType is, IndexType ir, IndexType iwire) const { IndexType hvSegment = 1; // There is only one HV segment in ME1/1 if (is > 2 && ir == 1) { // HV segments are the same in ME3/1 and ME4/1 if (iwire >= 33 && iwire <= 64) { hvSegment = 2; } else if (iwire >= 65 && iwire <= 96) { hvSegment = 3; } } else if (is > 1 && ir == 2) { // HV segments are the same in ME2/2, ME3/2, and ME4/2 if (iwire >= 17 && iwire <= 28) { hvSegment = 2; } else if (iwire >= 29 && iwire <= 40) { hvSegment = 3; } else if (iwire >= 41 && iwire <= 52) { hvSegment = 4; } else if (iwire >= 53 && iwire <= 64) { hvSegment = 5; } } else if (is == 1 && ir == 2) { if (iwire >= 25 && iwire <= 48) { hvSegment = 2; } else if (iwire >= 49 && iwire <= 64) { hvSegment = 3; } } else if (is == 1 && ir == 3) { if (iwire >= 13 && iwire <= 22) { hvSegment = 2; } else if (iwire >= 23 && iwire <= 32) { hvSegment = 3; } } else if (is == 2 && ir == 1) { if (iwire >= 45 && iwire <= 80) { hvSegment = 2; } else if (iwire >= 81 && iwire <= 112) { hvSegment = 3; } } return hvSegment; } /** * Linear index for 1st Gas gain sector in ring 'ir' of station 'is' in endcap 'ie'. * * Endcap label range 1-2, Station label range 1-4, Ring label range 1-3. * * WARNING: ME1a channels are the last 1 of the 5 chips total in each layer of an ME11 chamber, * and an input ir=4 is invalid and will give nonsense. */ IndexType sectorStart(IndexType ie, IndexType is, IndexType ir) const { // There are 36 chambers * 6 layers * 5 CFEB's * 1 HV segment = 1080 gas-gain sectors in ME1/1 // There are 36*6*5*3 = 3240 gas-gain sectors in ME1/2 // There are 36*6*4*3 = 2592 gas-gain sectors in ME1/3 // There are 18*6*5*3 = 1620 gas-gain sectors in ME[2-4]/1 // There are 36*6*5*5 = 5400 gas-gain sectors in ME[2-4]/2 // Start of -z channels (CSCs 2008) is 22572 + 1 = 22573 // Start of +z (ME42) is 45144 + 1 = 45145 // Start of -z (ME42) is 45144 + 1 + 5400 = 50545 const IndexType nStart[24] = {1, 1081, 4321, //ME+1/1,ME+1/2,ME+1/3 6913, 8533, 0, //ME+2/1,ME+2/2,ME+2/3 13933, 15553, 0, //ME+3/1,ME+3/2,ME+3/3 20953, 45145, 0, //ME+4/1,ME+4/2,ME+4/3 (note, ME+4/2 index follows ME-4/1...) 22573, 23653, 26893, //ME-1/1,ME-1/2,ME-1/3 29485, 31105, 0, //ME-2/1,ME-2/2,ME-2/3 36505, 38125, 0, //ME-3/1,ME-3/2,ME-3/3 43525, 50545, 0}; //ME-4/1,ME-4/2,ME-4/3 (note, ME-4/2 index follows ME+4/2...) return nStart[(ie - 1) * 12 + (is - 1) * 3 + ir - 1]; } /** * Linear index for Gas gain sector, based on CSCDetId 'id', cathode strip 'istrip' and anode wire 'iwire' * * Output is 1-45144 (CSCs 2008) and 45145-55944 (ME42). * * WARNING: Use at your own risk! You must input labels within hardware ranges (e.g., 'id' must correspond * to a specific layer 1-6). No trapping on out-of-range values! */ IndexType gasGainIndex(const CSCDetId& id, IndexType istrip, IndexType iwire) const { return gasGainIndex(id.endcap(), id.station(), id.ring(), id.chamber(), id.layer(), istrip, iwire); } /** * Linear index for Gas gain sector, based on the cathode strip 'istrip' and anode wire 'iwire' * located in layer 'il' of chamber 'ic' of ring 'ir' in station 'is' of endcap 'ie'. * * Output is 1-45144 (CSCs 2008) and 45145-55944 (ME42). * * WARNING: Use at your own risk! You must input labels within hardware ranges. * No trapping on out-of-range values! */ IndexType gasGainIndex( IndexType ie, IndexType is, IndexType ir, IndexType ic, IndexType il, IndexType istrip, IndexType iwire) const { IndexType ichip = this->chipIndex(istrip); IndexType ihvsegment = this->hvSegmentIndex(is, ir, iwire); return sectorStart(ie, is, ir) + ((ic - 1) * 6 + il - 1) * sectorsPerLayer(is, ir) + (ihvsegment - 1) * chipsPerLayer(is, ir) + (ichip - 1); } /** * Decode CSCDetId from various indexes and labels */ CSCDetId detIdFromLayerIndex(IndexType ili) const; CSCDetId detIdFromChamberIndex(IndexType ici) const; CSCDetId detIdFromChamberIndex_OLD(IndexType ici) const; CSCDetId detIdFromChamberLabel(IndexType ie, IndexType icl) const; std::pair<CSCDetId, IndexType> detIdFromStripChannelIndex(LongIndexType ichi) const; std::pair<CSCDetId, IndexType> detIdFromChipIndex(IndexType ichi) const; IndexType chamberLabelFromChamberIndex(IndexType) const; // just for cross-checks /** * Build index used internally in online CSC conditions databases (the 'Igor Index') * * This is the decimal integer ie*100000 + is*10000 + ir*1000 + ic*10 + il <br> * (ie=1-2, is=1-4, ir=1-4, ic=1-36, il=1-6) <br> * Channels 1-16 in ME1A (is=1, ir=4) are reset to channels 65-80 of ME11. */ int dbIndex(const CSCDetId& id, int& channel); private: static std::vector<IndexType> fillChamberLabel(); static std::vector<IndexType> const& chamberLabel(); }; #endif