473 valid &= diamondVFATStatus.
isValid();
474 valid &= diamondDigis.
isValid();
480 <<
"ERROR in CTPPSDiamondDQMSource::analyze > some of the required inputs are not valid. Skipping this event.\n" 481 <<
" diamondVFATStatus.isValid = " << diamondVFATStatus.
isValid() <<
"\n" 482 <<
" diamondDigis.isValid = " << diamondDigis.
isValid() <<
"\n" 483 <<
" fedInfo.isValid = " << fedInfo.
isValid();
498 for (
const auto& digis : *diamondDigis ) {
502 for (
const auto& digi : digis ) {
504 detId_pot.setChannel( 0 );
508 if ( digi.getLeadingEdge() != 0 || digi.getTrailingEdge() != 0 ) {
510 if ( digi.getLeadingEdge() != 0 ) {
513 if ( digi.getLeadingEdge() != 0 && digi.getTrailingEdge() == 0 ) {
514 ++(
potPlots_[detId_pot].LeadingOnlyCounter);
517 if ( digi.getLeadingEdge() == 0 && digi.getTrailingEdge() != 0 ) {
518 ++(
potPlots_[detId_pot].TrailingOnlyCounter);
521 if ( digi.getLeadingEdge() != 0 && digi.getTrailingEdge() != 0 ) {
522 ++(
potPlots_[detId_pot].CompleteCounter);
529 for (
unsigned short hptdcErrorIndex = 1; hptdcErrorIndex < 16; ++hptdcErrorIndex )
530 if ( hptdcErrors.
getErrorId( hptdcErrorIndex-1 ) )
potPlots_[detId_pot].HPTDCErrorFlags_cumulative->Fill( hptdcErrorIndex );
531 if ( digi.getMultipleHit() ) ++(
potPlots_[detId_pot].MHCounter);
536 for (
const auto& vfat_status : *diamondVFATStatus ) {
540 detId_pot.setChannel( 0 );
541 for (
const auto&
status : vfat_status ) {
542 if ( !
status.isOK() )
continue;
546 for (
const auto& optorx : *fedInfo ) {
548 potPlots_[detId_pot].ECCheck->Fill((
int)((optorx.getLV1()& 0xFF)-((
unsigned int)
status.getEC() & 0xFF)) & 0xFF);
549 if ( ( static_cast<int>( ( optorx.getLV1() & 0xFF )-
status.getEC() ) !=
EC_difference_56_ ) && (
static_cast<uint8_t
>( ( optorx.getLV1() & 0xFF )-
status.getEC() ) < 128 ) )
550 EC_difference_56_ = static_cast<int>( optorx.getLV1() & 0xFF )-( static_cast<unsigned int>(
status.getEC() ) & 0xFF );
554 <<
"\t\tVFAT EC: 0x"<<
static_cast<unsigned int>(
status.getEC() )
555 <<
"\twith ID: " <<
std::dec << detId
559 potPlots_[detId_pot].ECCheck->Fill((
int)((optorx.getLV1()& 0xFF)-
status.getEC()) & 0xFF);
560 if ( ( static_cast<int>( ( optorx.getLV1() & 0xFF )-
status.getEC() ) !=
EC_difference_45_ ) && (
static_cast<uint8_t
>( ( optorx.getLV1() & 0xFF )-
status.getEC() ) < 128 ) )
561 EC_difference_45_ = static_cast<int>( optorx.getLV1() & 0xFF )-( static_cast<unsigned int>(
status.getEC() ) & 0xFF );
565 <<
"\t\tVFAT EC: 0x"<<
static_cast<unsigned int>(
status.getEC() )
566 <<
"\twith ID: " <<
std::dec << detId
574 std::unordered_map<unsigned int, std::set<unsigned int> > planes;
575 std::unordered_map<unsigned int, std::set<unsigned int> > planes_inclusive;
578 for (
const auto&
rechits : *diamondRecHits ) {
581 detId_pot.setChannel( 0 );
584 for (
const auto& rechit :
rechits ) {
585 planes_inclusive[detId_pot].insert( detId.plane() );
588 planes[detId_pot].
insert( detId.plane() );
592 float UFSDShift = 0.0;
593 if ( rechit.getYWidth() < 3 ) UFSDShift = 0.5;
596 TH2F *hitHistoTmp =
potPlots_[detId_pot].hitDistribution2d->getTH2F();
597 TAxis *hitHistoTmpYAxis = hitHistoTmp->GetYaxis();
600 for (
int i=0;
i<numOfBins; ++
i) {
601 hitHistoTmp->Fill( detId.plane() + UFSDShift, hitHistoTmpYAxis->GetBinCenter(startBin+
i) );
604 hitHistoTmp =
potPlots_[detId_pot].hitDistribution2d_lumisection->getTH2F();
605 hitHistoTmpYAxis = hitHistoTmp->GetYaxis();
608 for (
int i=0;
i<numOfBins; ++
i) {
609 hitHistoTmp->Fill( detId.plane() + UFSDShift, hitHistoTmpYAxis->GetBinCenter(startBin+
i) );
614 if ( rechit.getToT() != 0 ) {
616 potPlots_[detId_pot].leadingEdgeCumulative_both->Fill( rechit.getT() + 25*rechit.getOOTIndex() );
617 potPlots_[detId_pot].timeOverThresholdCumulativePot->Fill( rechit.getToT() );
619 TH2F *hitHistoOOTTmp =
potPlots_[detId_pot].hitDistribution2dOOT->getTH2F();
620 TAxis *hitHistoOOTTmpYAxis = hitHistoOOTTmp->GetYaxis();
623 for (
int i=0;
i<numOfBins; ++
i) {
624 hitHistoOOTTmp->Fill( detId.plane() + 0.25 * rechit.getOOTIndex(), hitHistoOOTTmpYAxis->GetBinCenter(startBin+
i) );
630 TH2F *hitHistoOOTTmp =
potPlots_[detId_pot].hitDistribution2dOOT_le->getTH2F();
631 TAxis *hitHistoOOTTmpYAxis = hitHistoOOTTmp->GetYaxis();
634 for (
int i=0;
i<numOfBins; ++
i) {
635 hitHistoOOTTmp->Fill( detId.plane() + 0.25 * rechit.getOOTIndex(), hitHistoOOTTmpYAxis->GetBinCenter(startBin+
i) );
645 plt.second.activePlanes->Fill( planes[plt.first].size() );
646 plt.second.activePlanesInclusive->Fill( planes_inclusive[plt.first].size() );
650 for (
const auto&
tracks : *diamondLocalTracks ) {
653 detId_pot.setChannel( 0 );
657 if ( !
track.isValid() )
continue;
660 if ( potPlots_.find( detId_pot ) == potPlots_.end() )
continue;
662 TH2F *trackHistoOOTTmp = potPlots_[detId_pot].trackDistributionOOT->getTH2F();
663 TAxis *trackHistoOOTTmpYAxis = trackHistoOOTTmp->GetYaxis();
666 for (
int i=0;
i<numOfBins; ++
i) {
667 trackHistoOOTTmp->Fill(
track.getOOTIndex(), trackHistoOOTTmpYAxis->GetBinCenter(startBin+
i) );
671 TH1F *trackHistoInTimeTmp = potPlots_[detId_pot].trackDistribution->getTH1F();
674 for (
int i=0;
i<numOfBins; ++
i) {
675 trackHistoInTimeTmp->Fill( trackHistoInTimeTmp->GetBinCenter(startBin+
i) );
682 for (
const auto& tracks : *diamondLocalTracks ) {
685 detId_pot.setChannel( 0 );
686 for (
const auto&
track : tracks ) {
689 std::set<int> planesInTrackSet;
690 for (
const auto& vec : *diamondRecHits ) {
692 if ( detid.arm() != detId_pot.arm() )
continue;
694 for (
const auto&
hit : vec ) {
698 planesInTrackSet.insert(detid.plane());
703 if ( numOfHits > 0 && numOfHits <= 10 && planesInTrackSet.size() > 2 ) {
704 for (
int plane=0; plane<4; ++plane ) {
705 for (
int channel=0; channel<12; ++channel ) {
706 int map_index = plane*100 + channel;
707 if ( potPlots_[detId_pot].effDoublecountingChMap.find( map_index ) == potPlots_[detId_pot].effDoublecountingChMap.end() ) {
708 potPlots_[detId_pot].effTriplecountingChMap[map_index] = 0;
709 potPlots_[detId_pot].effDoublecountingChMap[map_index] = 0;
714 ++(potPlots_[detId_pot].effDoublecountingChMap[map_index]);
715 for (
const auto& rechits : *diamondRecHits ) {
717 if ( detId_hit == detId ) {
718 for (
const auto& rechit : rechits ) {
719 if ( track.containsHit( rechit, 1 ) ) {
721 ++(potPlots_[detId_pot].effTriplecountingChMap[map_index]);
734 for (
const auto& rechits : *diamondRecHits ) {
737 detId_pot.setChannel( 0 );
739 for (
const auto& rechit : rechits ) {
741 if ( rechit.getToT() == 0 )
continue;
742 if ( !pixelTracks.
isValid() )
continue;
743 if ( potPlots_.find( detId_pot ) == potPlots_.end() )
continue;
745 for (
const auto& ds : *pixelTracks ) {
746 if ( ds.size() > 1 )
continue;
749 for (
const auto& lt : ds ) {
750 if ( lt.isValid() && pixId.arm() == detId_pot.arm() ) {
763 for (
const auto& digis : *diamondDigis ) {
768 detId_pot.setChannel( 0 );
769 for (
const auto& digi : digis ) {
770 if ( digi.getLeadingEdge() != 0 ) {
771 if ( detId.plane() == 1 ) {
772 potPlots_[detId_pot].clock_Digi1_le->Fill(
HPTDC_BIN_WIDTH_NS * digi.getLeadingEdge() );
773 potPlots_[detId_pot].clock_Digi1_te->Fill(
HPTDC_BIN_WIDTH_NS * digi.getTrailingEdge() );
775 if ( detId.plane() == 3 ) {
776 potPlots_[detId_pot].clock_Digi3_le->Fill(
HPTDC_BIN_WIDTH_NS * digi.getLeadingEdge() );
777 potPlots_[detId_pot].clock_Digi3_te->Fill(
HPTDC_BIN_WIDTH_NS * digi.getTrailingEdge() );
789 std::unordered_map<unsigned int, unsigned int> channelsPerPlane;
790 for (
const auto& digis : *diamondDigis ) {
793 for (
const auto& digi : digis ) {
798 if ( digi.getLeadingEdge() != 0 ) {
799 planePlots_[detId_plane].digiProfileCumulativePerPlane->Fill( detId.channel() );
800 if ( channelsPerPlane.find(detId_plane) != channelsPerPlane.end() ) channelsPerPlane[detId_plane]++;
801 else channelsPerPlane[detId_plane] = 0;
806 for (
const auto& plt : channelsPerPlane ) {
807 planePlots_[plt.first].hit_multiplicity->Fill( plt.second );
811 for (
const auto& rechits : *diamondRecHits ) {
814 for (
const auto& rechit : rechits ) {
816 if ( rechit.getToT() == 0 )
continue;
819 TH1F *hitHistoTmp =
planePlots_[detId_plane].hitProfile->getTH1F();
822 for (
int i=0;
i<numOfBins; ++
i) {
823 hitHistoTmp->Fill( hitHistoTmp->GetBinCenter(startBin+
i) );
832 for (
const auto& ds : *pixelTracks ) {
835 if ( ds.size() > 1 )
continue;
836 for (
const auto& lt : ds ) {
837 if ( lt.isValid() ) {
842 std::set< CTPPSDiamondDetId > planesWitHits_set;
843 for (
const auto& rechits : *diamondRecHits ) {
846 for (
const auto& rechit : rechits ) {
852 if (
centralOOT_ != -999 && rechit.getOOTIndex() ==
centralOOT_ ) planesWitHits_set.insert( detId_plane );
858 for (
auto& planeId : planesWitHits_set)
872 for (
const auto& digis : *diamondDigis ) {
874 for (
const auto& digi : digis ) {
879 for (
unsigned short hptdcErrorIndex = 1; hptdcErrorIndex < 16; ++hptdcErrorIndex )
881 if ( digi.getMultipleHit() ) ++(
channelPlots_[detId].MHCounter);
884 if ( digi.getLeadingEdge() != 0 || digi.getTrailingEdge() != 0 ) {
886 if ( digi.getLeadingEdge() != 0 && digi.getTrailingEdge() == 0 ) {
890 if ( digi.getLeadingEdge() == 0 && digi.getTrailingEdge() != 0 ) {
894 if ( digi.getLeadingEdge() != 0 && digi.getTrailingEdge() != 0 ) {
904 for (
const auto& rechits : *diamondRecHits ) {
906 for (
const auto& rechit : rechits ) {
910 channelPlots_[detId].leadingEdgeCumulative_both->Fill( rechit.getT() + 25*rechit.getOOTIndex() );
911 channelPlots_[detId].TimeOverThresholdCumulativePerChannel->Fill( rechit.getToT() );
923 for (
const auto& rechits : *diamondRecHits ) {
925 for (
const auto& rechit : rechits ) {
928 if ( !pixelTracks.isValid() )
continue;
931 for (
const auto& ds : *pixelTracks ) {
934 if ( ds.size() > 1 )
continue;
935 for (
const auto& lt : ds ) {
static const int CTPPS_FED_ID_56
static const int CHANNEL_OF_VFAT_CLOCK
void setPlane(uint32_t channel)
void setChannel(uint32_t channel)
edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondDigi > > tokenDigi_
bool getErrorId(unsigned short id) const
int bunchCrossing() const
double horizontalShiftOfDiamond_
Event setup record containing the real (actual) geometry information.
static const int CTPPS_PIXEL_STATION_ID
static const int CTPPS_DIAMOND_STATION_ID
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
std::unordered_map< unsigned int, ChannelPlots > channelPlots_
edm::EDGetTokenT< edm::DetSetVector< CTPPSPixelLocalTrack > > tokenPixelTrack_
double horizontalShiftBwDiamondPixels_
bool insert(Storage &iStorage, ItemType *iItem, const IdTag &iIdTag)
edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondLocalTrack > > tokenDiamondTrack_
static const double HPTDC_BIN_WIDTH_NS
static const double INV_DISPLAY_RESOLUTION_FOR_HITS_MM
bool channelAlignedWithTrack(const CTPPSGeometry *geom, const CTPPSDiamondDetId &detid, const CTPPSDiamondLocalTrack &localTrack, const float tolerance=1)
std::unordered_map< unsigned int, PotPlots > potPlots_
static constexpr int TIMESLICE_WITHOUT_LEADING
edm::EDGetTokenT< edm::DetSetVector< CTPPSDiamondRecHit > > tokenDiamondHit_
static const int CTPPS_FAR_RP_ID
Detector ID class for CTPPS Timing Diamond detectors. Bits [19:31] : Assigend in CTPPSDetId Calss Bit...
std::unordered_map< unsigned int, PlanePlots > planePlots_
bool excludeMultipleHits_
static const int CTPPS_DIAMOND_RP_ID
edm::EDGetTokenT< std::vector< TotemFEDInfo > > tokenFEDInfo_
static const int CTPPS_FED_ID_45
T const * product() const
edm::EDGetTokenT< edm::DetSetVector< TotemVFATStatus > > tokenStatus_