20 : hitCount(0), beginTrackHits(0), endTrackHits(0), beginInner(0), endInner(0), beginOuter(0), endOuter(0) {
25 : hitCount(other.hitCount),
26 beginTrackHits(other.beginTrackHits),
27 endTrackHits(other.endTrackHits),
28 beginInner(other.beginInner),
29 endInner(other.endInner),
30 beginOuter(other.beginOuter),
31 endOuter(other.endOuter) {
36 : hitCount(other.hitCount),
37 beginTrackHits(other.beginTrackHits),
38 endTrackHits(other.endTrackHits),
39 beginInner(other.beginInner),
40 endInner(other.endInner),
41 beginOuter(other.beginOuter),
42 endOuter(other.endOuter) {
43 const unsigned short max_vector_length =
92 uint16_t encodeMuonLayer(
const DetId&
id) {
93 uint16_t detid =
id.det();
94 uint16_t subdet =
id.subdetId();
100 layer = ((
DTLayerId(
id.rawId()).station() - 1) << 2);
101 layer |=
DTLayerId(
id.rawId()).superLayer();
104 layer = ((
CSCDetId(
id.rawId()).station() - 1) << 2);
105 layer |= (
CSCDetId(
id.rawId()).ring() - 1);
109 layer = ((rpcid.station() - 1) << 2);
110 layer |= (rpcid.station() <= 2) ? ((rpcid.layer() - 1) << 1) : 0x0;
111 layer |=
abs(rpcid.region());
116 uint16_t st = gemid.station();
117 uint16_t la = gemid.layer();
122 layer |= (st - 1) << 2;
132 layer = (me0id.roll());
138 uint16_t encodeTimingLayer(
const DetId&
id) {
139 uint16_t detid =
id.det();
140 uint16_t subdet =
id.subdetId();
141 uint16_t layer = 0x0;
144 switch (mtdid.mtdSubDetector()) {
152 throw cms::Exception(
"HitPattern") <<
"Invalid MTD Subdetector " << mtdid.mtdSubDetector() <<
"!";
155 throw cms::Exception(
"HitPattern") <<
"Invalid DetId for FastTime det= " << detid <<
" subdet= " << subdet <<
"!";
162 uint16_t detid =
id.det();
163 uint16_t subdet =
id.subdetId();
166 uint16_t layer = 0x0;
168 layer = ttopo.
layer(
id);
170 layer = encodeMuonLayer(
id);
172 layer = encodeTimingLayer(
id);
193 return encode(detid, subdet, layer, side, hitType);
255 <<
" were stored on this object before hits of some other category were inserted "
256 <<
"but hits of the same category should be inserted in a row. "
257 <<
"Please rework the code so it inserts all "
268 <<
" were stored on this object before hits of some other category were inserted "
269 <<
"but hits of the same category should be inserted in a row. "
270 <<
"Please rework the code so it inserts all "
271 <<
"MISSING_INNER_HITS"
281 <<
" were stored on this object before hits of some other category were inserted "
282 <<
"but hits of the same category should be inserted in a row. "
283 <<
"Please rework the code so it inserts all "
284 <<
"MISSING_OUTER_HITS"
307 <<
"Got DetId from det " <<
id.det()
308 <<
" that is not Muon in appendMuonHit(), which should only be used for muon hits in the HitPattern IO rule";
311 uint16_t subdet =
id.subdetId();
340 uint16_t bitEndOffset = (position + 1) *
HIT_LENGTH;
341 uint8_t secondWord = (bitEndOffset >> 4);
342 uint8_t secondWordBits = bitEndOffset & (16 - 1);
344 uint8_t lowBitsToTrash = secondWordBits -
HIT_LENGTH;
345 uint16_t myResult = (
hitPattern[secondWord] >> lowBitsToTrash) & ((1 << HIT_LENGTH) - 1);
348 uint8_t firstWordBits =
HIT_LENGTH - secondWordBits;
349 uint16_t firstWordBlock =
hitPattern[secondWord - 1] >> (16 - firstWordBits);
350 if (secondWordBits == 0)
351 return firstWordBlock;
352 uint16_t secondWordBlock =
hitPattern[secondWord] & ((1 << secondWordBits) - 1);
353 uint16_t myResult = firstWordBlock + (secondWordBlock << firstWordBits);
372 memset(hasMono, 0,
sizeof(hasMono));
373 memset(hasStereo, 0,
sizeof(hasStereo));
381 if (stripdet != 0 && subStructure != stripdet) {
391 hasMono[subStructure][
getLayer(pattern)] =
true;
394 hasStereo[subStructure][
getLayer(pattern)] =
true;
406 if (hasMono[
i][
j] && hasStereo[
i][
j]) {
416 std::bitset<128> side[2];
418 for (
int i = range.first;
i < range.second; ++
i) {
425 if (hitType != HIT_TYPE::VALID)
429 side[
getSide(pattern)].set(apattern);
432 return (side[0] & side[1]).count();
452 uint16_t tk_substr_layer =
463 for (
int i = range.first;
i < range.second; ++
i) {
465 if ((pattern & mask) == tk_substr_layer) {
467 if (hitType < layerCase) {
469 layerCase = (hitType ==
HIT_TYPE::BAD ? (uint32_t)HIT_TYPE::INACTIVE : hitType);
470 if (layerCase == HIT_TYPE::VALID) {
480 uint16_t tk_substr_layer =
488 uint16_t monoStereo = 0x0;
490 for (
int i = range.first;
i < range.second; ++
i) {
492 if ((pattern & mask) == tk_substr_layer) {
494 if (hitType == HIT_TYPE::VALID) {
515 std::bitset<128> layerOk;
517 for (
int i = range.first;
i < range.second; ++
i) {
524 if (hitType != HIT_TYPE::VALID)
528 layerOk.set(pattern);
531 return layerOk.count();
536 std::bitset<128> layerOk;
538 for (
int i = range.first;
i < range.second; ++
i) {
543 if (hitType != HIT_TYPE::VALID)
547 layerOk.set(pattern);
550 return layerOk.count();
554 std::bitset<128> layerOk;
555 std::bitset<128> layerMissed;
557 for (
int i = range.first;
i < range.second; ++
i) {
564 if (hitType == HIT_TYPE::VALID)
565 layerOk.set(pattern);
566 if (hitType == HIT_TYPE::MISSING)
567 layerMissed.set(pattern);
569 layerMissed &= ~layerOk;
573 return layerMissed.count();
578 uint16_t NPixBarrel = 4;
579 for (uint16_t layer = 1; layer <= NPixBarrel; layer++) {
589 uint16_t NPixForward = 3;
590 for (uint16_t layer = 1; layer <= NPixForward; layer++) {
600 for (uint16_t layer = 1; layer <= 4; layer++) {
610 for (uint16_t layer = 1; layer <= 3; layer++) {
620 for (uint16_t layer = 1; layer <= 6; layer++) {
630 for (uint16_t layer = 1; layer <= 9; layer++) {
640 uint16_t NPixBarrel = 4;
641 for (uint16_t layer = 1; layer <= NPixBarrel; layer++) {
651 uint16_t NPixForward = 3;
652 for (uint16_t layer = 1; layer <= NPixForward; layer++) {
662 for (uint16_t layer = 1; layer <= 4; layer++) {
672 for (uint16_t layer = 1; layer <= 3; layer++) {
682 for (uint16_t layer = 1; layer <= 6; layer++) {
692 for (uint16_t layer = 1; layer <= 9; layer++) {
702 uint16_t NPixBarrel = 4;
703 for (uint16_t layer = 1; layer <= NPixBarrel; layer++) {
713 uint16_t NPixForward = 3;
714 for (uint16_t layer = 1; layer <= NPixForward; layer++) {
724 for (uint16_t layer = 1; layer <= 4; layer++) {
734 for (uint16_t layer = 1; layer <= 3; layer++) {
744 for (uint16_t layer = 1; layer <= 6; layer++) {
754 for (uint16_t layer = 1; layer <= 9; layer++) {
764 uint16_t NPixBarrel = 4;
765 for (uint16_t layer = 1; layer <= NPixBarrel; layer++) {
775 uint16_t NPixForward = 3;
776 for (uint16_t layer = 1; layer <= NPixForward; layer++) {
786 for (uint16_t layer = 1; layer <= 4; layer++) {
796 for (uint16_t layer = 1; layer <= 3; layer++) {
806 for (uint16_t layer = 1; layer <= 6; layer++) {
816 for (uint16_t layer = 1; layer <= 9; layer++) {
841 stream <<
"\tcsc ring " <<
getCSCRing(pattern);
850 stream <<
"(UNKNOWN Muon SubStructure!) \tsubsubstructure " <<
getSubStructure(pattern);
855 stream <<
"\tlayer " <<
getLayer(pattern);
857 stream <<
"\thit type " <<
getHitType(pattern);
862 stream <<
"HitPattern" << std::endl;
866 std::ios_base::fmtflags flags = stream.flags();
867 stream.setf(std::ios_base::hex, std::ios_base::basefield);
868 stream.setf(std::ios_base::showbase);
904 (hitType == -1 ||
int(
getHitType(pattern)) == hitType)) {
909 return stations[0] + stations[1] + stations[2] + stations[3] + stations[4];
918 if (ret == 0 || stat < ret) {
933 if (ret == 0 || stat > ret) {
950 return stations[0] + stations[1] + stations[2] + stations[3];
961 return stations[0] + stations[1] + stations[2] + stations[3];
965 int stations[4][2] = {{0, 0}, {0, 0}, {0, 0}, {0, 0}};
973 return stations[0][0] * stations[0][1] + stations[1][0] * stations[1][1] + stations[2][0] * stations[2][1] +
974 stations[3][0] * stations[3][1];
980 int pos = offset +
i;
981 uint16_t bit = (pattern >>
i) & 0x1;
983 hitPattern[pos >> 4] += bit << ((offset +
i) & (16 - 1));
int stripTOBLayersTotallyOffOrBad(HitCategory category=TRACK_HITS) const
int stripTOBLayersWithMeasurement() const
static uint16_t getCSCRing(uint16_t pattern)
CSC ring (1-4). Only valid for muon CSC patterns, of course.
static constexpr auto TEC
int pixelBarrelLayersWithoutMeasurement(HitCategory category) const
static uint32_t getLayer(uint16_t pattern)
void insertHit(const uint16_t pattern)
tuple ret
prodAgent to be discontinued
int outermostMuonStationWithHits(int hitType) const
hitType=-1(all), 0=valid, 3=bad; 0 = no stations at all
static const unsigned short HIT_LENGTH
static const unsigned short ARRAY_LENGTH
static const uint32_t NULL_RETURN
int pixelBarrelLayersNull() const
static bool timingHitFilter(uint16_t pattern)
static bool pixelHitFilter(uint16_t pattern)
int stripTIBLayersNull() const
int pixelBarrelLayersTotallyOffOrBad(HitCategory category=TRACK_HITS) const
bool hasValidHitInPixelLayer(enum PixelSubdetector::SubDetector, uint16_t layer) const
static uint16_t isStereo(DetId i, const TrackerTopology &ttopo)
bool tobIsStereo(const DetId &id) const
int stripTIBLayersWithMeasurement() const
int stripTECLayersNull() const
static const unsigned short SideOffset
static const char category[]
static const uint16_t EMPTY_PATTERN
int muonStations(int subdet, int hitType) const
subdet = 0(all), 1(DT), 2(CSC), 3(RPC) 4(GEM); hitType=-1(all), 0=valid, 3=bad
static uint16_t getDTSuperLayer(uint16_t pattern)
DT superlayer (1-3). Where the "hit" was a DT segment, superlayer is 0. Only valid for muon DT patter...
static bool muonME0HitFilter(uint16_t pattern)
static const unsigned short SubstrOffset
int stripTOBLayersWithoutMeasurement(HitCategory category) const
int numberOfDTStationsWithRPhiView() const
HitPattern & operator=(const HitPattern &other)
uint16_t getTrackerMonoStereo(HitCategory category, uint16_t substr, uint16_t layer) const
static const unsigned short MaxHits
uint32_t getTrackerLayerCase(HitCategory category, uint16_t substr, uint16_t layer) const
std::vector< uint16_t > hitPattern
static const unsigned short maxTrackerWord
int pixelLayersWithMeasurement() const
uint32_t T const *__restrict__ uint32_t const *__restrict__ int32_t int Histo::index_type cudaStream_t stream
int numberOfValidStripLayersWithMonoAndStereo() const
int pixelEndcapLayersWithoutMeasurement(HitCategory category) const
int trackerLayersWithMeasurement() const
static const unsigned short HitTypeMask
static bool pixelBarrelHitFilter(uint16_t pattern)
int pixelEndcapLayersWithMeasurement() const
Detector identifier base class for the MIP Timing Layer.
bool insertExpectedOuterHit(const uint16_t pattern)
bool tidIsStereo(const DetId &id) const
constexpr std::array< uint8_t, layerIndexSize > layer
static bool pixelEndcapHitFilter(uint16_t pattern)
const uint16_t range(const Frame &aFrame)
static bool validHitFilter(uint16_t pattern)
void printHitPattern(HitCategory category, int position, std::ostream &stream) const
bool tecIsStereo(const DetId &id) const
static uint16_t getGEMLayer(uint16_t pattern)
GEM layer: 1-6 for station 0, 1-2 for stations 1 and 2. Only valid for muon GEM patterns, of course.
static const unsigned short minTrackerWord
uint16_t hitPattern[ARRAY_LENGTH]
int stripTIBLayersTotallyOffOrBad(HitCategory category=TRACK_HITS) const
static bool muonCSCHitFilter(uint16_t pattern)
static uint32_t getHitType(uint16_t pattern)
int numberOfValidTECLayersWithMonoAndStereo(uint32_t layer=0) const
int stripTIDLayersWithMeasurement() const
static const unsigned short SubDetectorMask
static bool stripHitFilter(uint16_t pattern)
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum) ...
int numberOfAllHits(HitCategory category) const
Abs< T >::type abs(const T &t)
bool appendHit(const TrackingRecHit &hit, const TrackerTopology &ttopo)
int numberOfDTStationsWithRZView() const
static constexpr auto TOB
int stripTIDLayersNull() const
static const unsigned short HitTypeOffset
int numberOfValidTIDLayersWithMonoAndStereo(uint32_t layer=0) const
bool appendTrackerHit(uint16_t subdet, uint16_t layer, uint16_t stereo, TrackingRecHit::Type hitType)
static uint32_t getSubStructure(uint16_t pattern)
int numberOfDTStationsWithBothViews() const
int numberOfValidTIBLayersWithMonoAndStereo(uint32_t layer=0) const
static uint16_t getRPCregion(uint16_t pattern)
RPC region: 0 = barrel, 1 = endcap. Only valid for muon RPC patterns, of course.
static bool muonGEMHitFilter(uint16_t pattern)
static uint16_t getGEMStation(uint16_t pattern)
GEM station: 1,2. Only valid for muon GEM patterns, of course.
int stripTIDLayersWithoutMeasurement(HitCategory category) const
int innermostMuonStationWithHits(int hitType) const
hitType=-1(all), 0=valid, 3=bad; 0 = no stations at all
static bool muonHitFilter(uint16_t pattern)
static bool trackerHitFilter(uint16_t pattern)
static constexpr auto TIB
static const unsigned short SideMask
static const unsigned short minStripWord
std::pair< uint8_t, uint8_t > getCategoryIndexRange(HitCategory category) const
static const unsigned short SubDetectorOffset
bool tibIsStereo(const DetId &id) const
int pixelBarrelLayersWithMeasurement() const
unsigned int layer(const DetId &id) const
uint16_t getHitPatternByAbsoluteIndex(int position) const
static uint32_t getSide(uint16_t pattern)
int stripTOBLayersNull() const
static bool muonDTHitFilter(uint16_t pattern)
int stripTIDLayersTotallyOffOrBad(HitCategory category=TRACK_HITS) const
int trackerLayersWithoutMeasurement(HitCategory category) const
bool insertExpectedInnerHit(const uint16_t pattern)
Detector identifier class for the Endcap Timing Layer.
static const unsigned short SubstrMask
static const unsigned short LayerOffset
static int position[264][3]
Detector identifier class for the Barrel Timing Layer. The crystal count must start from 0...
int pixelEndcapLayersTotallyOffOrBad(HitCategory category=TRACK_HITS) const
bool insertTrackHit(const uint16_t pattern)
int stripTECLayersWithMeasurement() const
int stripTECLayersWithoutMeasurement(HitCategory category) const
static uint16_t getRPCLayer(uint16_t pattern)
RPC layer: for station 1 and 2, layer = 1(inner) or 2(outer); for station 3, 4 layer is always 0...
static uint16_t getMuonStation(uint16_t pattern)
Muon station (1-4). Only valid for muon patterns, of course. only for patterns from muon...
void print(HitCategory category, std::ostream &stream=std::cout) const
int numberOfValidTOBLayersWithMonoAndStereo(uint32_t layer=0) const
DetId geographicalId() const
Run3ScoutingHitPatternPOD run3ScoutingHitPatternPOD() const
static uint32_t getSubSubStructure(uint16_t pattern)
uint16_t getHitPattern(HitCategory category, int position) const
static const unsigned short LayerMask
static bool muonRPCHitFilter(uint16_t pattern)
static constexpr auto TID
static uint16_t encode(const TrackingRecHit &hit, const TrackerTopology &ttopo)
int stripTECLayersTotallyOffOrBad(HitCategory category=TRACK_HITS) const
int stripTIBLayersWithoutMeasurement(HitCategory category) const
bool appendMuonHit(const DetId &id, TrackingRecHit::Type hitType)
int pixelEndcapLayersNull() const
constexpr Detector det() const
get the detector field from this detid