47 nameProcess_( iConfig.getParameter<
std::
string >(
"processName" ) ),
48 autoProcessName_( nameProcess_ ==
"*" ),
49 onlyStandAlone_( iConfig.getParameter< bool >(
"onlyStandAlone" ) ),
53 tagL1GlobalTriggerObjectMaps_(
"l1L1GtObjectMap" ),
62 autoProcessNameL1ExtraMu_(
false ),
63 autoProcessNameL1ExtraNoIsoEG_(
false ),
64 autoProcessNameL1ExtraIsoEG_(
false ),
65 autoProcessNameL1ExtraCenJet_(
false ),
66 autoProcessNameL1ExtraForJet_(
false ),
67 autoProcessNameL1ExtraTauJet_(
false ),
68 autoProcessNameL1ExtraETM_(
false ),
69 autoProcessNameL1ExtraHTM_(
false ),
72 hltPrescaleProvider_(iConfig, consumesCollector(), *this),
73 hltConfigInit_(
false ),
75 tagTriggerResults_(
"TriggerResults" ),
76 tagTriggerEvent_(
"hltTriggerSummaryAOD" ),
78 labelHltPrescaleTable_(),
79 hltPrescaleTableRun_(),
80 hltPrescaleTableLumi_(),
81 addPathModuleLabels_(
false ),
82 packPathNames_( iConfig.existsAs<bool>(
"packTriggerPathNames") ? iConfig.getParameter<bool>(
"packTriggerPathNames") :
false ),
83 packPrescales_( iConfig.existsAs<bool>(
"packTriggerPrescales") ? iConfig.getParameter<bool>(
"packTriggerPrescales") :
true )
90 if ( iConfig.
exists(
"l1ExtraMu" ) ) {
98 if ( iConfig.
exists(
"l1ExtraNoIsoEG" ) ) {
106 if ( iConfig.
exists(
"l1ExtraIsoEG" ) ) {
114 if ( iConfig.
exists(
"l1ExtraCenJet" ) ) {
122 if ( iConfig.
exists(
"l1ExtraForJet" ) ) {
130 if ( iConfig.
exists(
"l1ExtraTauJet" ) ) {
138 if ( iConfig.
exists(
"l1ExtraETM" ) ) {
146 if ( iConfig.
exists(
"l1ExtraHTM" ) ) {
163 if ( iConfig.
exists(
"hltPrescaleTable" ) ) {
184 if ( iConfig.
exists(
"hltPrescaleTable" ) ) {
192 produces< TriggerAlgorithmCollection >();
193 produces< TriggerConditionCollection >();
194 produces< TriggerPathCollection >();
195 produces< TriggerFilterCollection >();
196 produces< TriggerObjectCollection >();
199 produces< PackedTriggerPrescales >();
200 produces< PackedTriggerPrescales >(
"l1max");
201 produces< PackedTriggerPrescales >(
"l1min");
203 produces< TriggerObjectStandAloneCollection >();
226 if ( processHistory.getConfigurationForProcess( iHist->processName(), processConfiguration ) &&
236 LogError(
"autoProcessName" ) <<
"trigger::TriggerEvent product with label '" <<
tagTriggerEvent_.
label() <<
"' not produced according to process history of input data\n" 237 <<
"No trigger information produced";
240 LogInfo(
"autoProcessName" ) <<
"HLT process name' " <<
nameProcess_ <<
"' used for PAT trigger information";
264 bool changed(
true );
266 LogError(
"hltConfig" ) <<
"HLT config extraction error with process name '" <<
nameProcess_ <<
"'";
267 }
else if ( hltConfig.size() <= 0 ) {
268 LogError(
"hltConfig" ) <<
"HLT config size error";
282 if ( handleHltPrescaleTable.
isValid() ) {
305 if ( handleHltPrescaleTable.
isValid() ) {
320 auto triggerObjects = std::make_unique<TriggerObjectCollection>();
321 auto triggerObjectsStandAlone = std::make_unique<TriggerObjectStandAloneCollection>();
322 std::unique_ptr<PackedTriggerPrescales> packedPrescales, packedPrescalesL1min, packedPrescalesL1max;
334 if( ! handleTriggerResults.
isValid() ) {
336 <<
"No HLT information produced";
338 }
else if ( ! handleTriggerEvent.
isValid() ) {
340 <<
"No HLT information produced";
356 if ( handleHltPrescaleTable.
isValid() ) {
361 if ( hltPrescaleTable.size() == 0 ) {
364 <<
"Using default from event setup";
369 LogDebug(
"hltPrescaleTable" ) <<
"HLT prescale table found in event setup";
371 LogWarning(
"hltPrescaleSet" ) <<
"HLTPrescaleTable from event setup has error";
375 unsigned set( hltPrescaleTable.set() );
376 if ( hltPrescaleTable.size() > 0 ) {
378 bool foundPrescaleLabel(
false );
379 for (
unsigned iLabel = 0; iLabel < hltPrescaleTable.labels().size(); ++iLabel ) {
382 foundPrescaleLabel =
true;
386 if ( ! foundPrescaleLabel ) {
393 LogError(
"hltPrescaleTable" ) <<
"No HLT prescale table found\n" 394 <<
"Using default empty table with all prescales 1";
398 const unsigned sizePaths( hltConfig.
size() );
399 const unsigned sizeFilters( handleTriggerEvent->
sizeFilters() );
400 const unsigned sizeObjects( handleTriggerEvent->
sizeObjects() );
402 std::map< std::string, int > moduleStates;
405 auto triggerPaths = std::make_unique<TriggerPathCollection>();
407 const std::vector<std::string> & pathNames = hltConfig.
triggerNames();
408 for (
size_t indexPath = 0; indexPath < sizePaths; ++indexPath ) {
409 const std::string & namePath = pathNames.at( indexPath );
410 unsigned indexLastFilterPathModules( handleTriggerResults->
index( indexPath ) + 1 );
411 while ( indexLastFilterPathModules > 0 ) {
412 --indexLastFilterPathModules;
413 const std::string & labelLastFilterPathModules( hltConfig.
moduleLabel( indexPath, indexLastFilterPathModules ) );
415 if ( indexLastFilterFilters < sizeFilters ) {
416 if ( hltConfig.
moduleType( labelLastFilterPathModules ) ==
"HLTBool" )
continue;
420 TriggerPath triggerPath( namePath, indexPath, hltConfig.
prescaleValue(
set, namePath ), handleTriggerResults->
wasrun( indexPath ), handleTriggerResults->
accept( indexPath ), handleTriggerResults->
error( indexPath ), indexLastFilterPathModules, hltConfig.
saveTagsModules( namePath ).size() );
422 const unsigned sizeModulesPath( hltConfig.
size( indexPath ) );
423 assert( indexLastFilterPathModules < sizeModulesPath );
424 std::map< unsigned, std::string > indicesModules;
425 for (
size_t iM = 0; iM < sizeModulesPath; ++iM ) {
428 triggerPath.addModule( nameModule );
431 if ( indexFilter < sizeFilters ) {
432 triggerPath.addFilterIndex( indexFilter );
434 const unsigned slotModule( hltConfig.
moduleIndex( indexPath, nameModule ) );
435 indicesModules.insert( std::pair< unsigned, std::string >( slotModule, nameModule ) );
439 for ( L1SeedCollection::const_iterator iSeed = l1Seeds.begin(); iSeed != l1Seeds.end(); ++iSeed ) {
440 triggerPath.addL1Seed( *iSeed );
445 for ( std::map< unsigned, std::string >::const_iterator iM = indicesModules.begin(); iM != indicesModules.end(); ++iM ) {
446 if ( iM->first < indexLastFilterPathModules ) {
447 moduleStates[ iM->second ] = 1;
448 }
else if ( iM->first == indexLastFilterPathModules ) {
449 moduleStates[ iM->second ] = handleTriggerResults->
accept( indexPath );
450 }
else if ( moduleStates.find( iM->second ) == moduleStates.end() ) {
451 moduleStates[ iM->second ] = -1;
462 std::multimap< trigger::size_type, int > objectTypes;
463 std::multimap< trigger::size_type, std::string > filterLabels;
465 for (
size_t iF = 0; iF < sizeFilters; ++iF ) {
469 assert( types.size() == keys.size() );
470 for (
size_t iK = 0; iK < keys.size(); ++iK ) {
471 filterLabels.insert( std::pair< trigger::size_type, std::string >( keys[ iK ], nameFilter ) );
472 objectTypes.insert( std::pair< trigger::size_type, int >( keys[ iK ], types[ iK ] ) );
479 triggerObjectsStandAlone->reserve( sizeObjects );
482 std::map< trigger::size_type, trigger::size_type > newObjectKeys;
483 for (
size_t iO = 0, iC = 0, nC = handleTriggerEvent->
sizeCollections(); iO < sizeObjects && iC < nC; ++iO ) {
487 while ( iO >= collectionKeys[ iC ] ) ++iC;
490 typedef std::multimap< trigger::size_type, int >::const_iterator it_type;
491 for (std::pair<it_type,it_type> trange = objectTypes.equal_range(iO);
492 trange.first != trange.second; ++trange.first) {
493 triggerObject.addTriggerObjectType( trange.first->second );
499 bool excluded(
false );
507 if ( excluded )
continue;
508 typedef std::multimap< trigger::size_type, std::string >::const_iterator it_fl;
509 for (std::pair<it_fl,it_fl> frange = filterLabels.equal_range(iO); frange.first != frange.second; ++frange.first) {
512 for (std::vector<ModuleLabelToPathAndFlags::PathAndFlags>::const_iterator iP = paths.begin(); iP != paths.end(); ++iP) {
513 bool pathFired = handleTriggerResults->
wasrun( iP->pathIndex ) && handleTriggerResults->
accept( iP->pathIndex );
514 triggerObjectStandAlone.
addPathName( iP->pathName, pathFired && iP->lastFilter, pathFired && iP->l3Filter );
518 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
527 auto triggerFilters = std::make_unique<TriggerFilterCollection>();
528 triggerFilters->reserve( sizeFilters );
529 for (
size_t iF = 0; iF < sizeFilters; ++iF ) {
536 triggerFilter.
setType( typeFilter );
539 for (
size_t iK = 0; iK < keys.size(); ++iK ) {
541 if ( newObjectKeys.find( keys.at( iK ) ) != newObjectKeys.end() ) {
542 if ( newObjectKeys[ keys.at( iK ) ] == sizeObjects )
continue;
543 triggerFilter.
addObjectKey( newObjectKeys[ keys.at( iK ) ] );
546 LogWarning(
"triggerObjectKey" ) <<
"TriggerFilter '" << nameFilter <<
"' requests non-existing TriggerObject key " << keys.at( iK ) <<
"\n" 547 <<
"Skipping object assignment";
551 std::map< std::string, int >::iterator iS( moduleStates.find( nameFilter ) );
552 if ( iS != moduleStates.end() ) {
553 if ( ! triggerFilter.
setStatus( iS->second ) ) {
560 triggerFilters->push_back( triggerFilter );
572 for (
unsigned int i = 0,
n = names.
size();
i <
n; ++
i) {
575 if (pvdet.first.empty()) {
576 packedPrescalesL1max->addPrescaledTrigger(
i, 1);
577 packedPrescalesL1min->addPrescaledTrigger(
i, 1);
579 int pmin = -1, pmax = -1;
580 for (
const auto &
p : pvdet.first) {
582 if (
p.second > 0 && (pmin == -1 || pmin >
p.second)) pmin =
p.second;
584 packedPrescalesL1max->addPrescaledTrigger(
i, pmax);
585 packedPrescalesL1min->addPrescaledTrigger(
i, pmin);
588 packedPrescales->addPrescaledTrigger(
i, pvdet.second);
602 std::map< L1GtObject, std::vector< unsigned > > l1ObjectTypeMap;
606 if ( handleL1ExtraMu.
isValid() ) {
607 std::vector< unsigned > muKeys;
608 for (
size_t l1Mu = 0; l1Mu < handleL1ExtraMu->size(); ++l1Mu ) {
609 if (
mainBxOnly_ && handleL1ExtraMu->at( l1Mu ).bx() != 0 )
continue;
615 const reco::LeafCandidate leafCandidate( *( handleL1ExtraMu->at( l1Mu ).reco::LeafCandidate::clone() ) );
622 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
623 if ( handleL1ExtraMu->at( l1Mu ).bx() == 0 ) muKeys.push_back( triggerObjectsStandAlone->size() - 1 );
625 l1ObjectTypeMap.insert( std::make_pair(
Mu, muKeys ) );
626 }
else LogError(
"l1ExtraValid" ) <<
"l1extra::L1MuonParticleCollection product with InputTag '" <<
tagL1ExtraMu_.
encode() <<
"' not in event";
631 if ( handleL1ExtraNoIsoEG.
isValid() ) {
632 std::vector< unsigned > noIsoEGKeys;
633 for (
size_t l1NoIsoEG = 0; l1NoIsoEG < handleL1ExtraNoIsoEG->size(); ++l1NoIsoEG ) {
634 if (
mainBxOnly_ && handleL1ExtraNoIsoEG->at( l1NoIsoEG ).bx() != 0 )
continue;
640 const reco::LeafCandidate leafCandidate( *( handleL1ExtraNoIsoEG->at( l1NoIsoEG ).reco::LeafCandidate::clone() ) );
647 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
648 if ( handleL1ExtraNoIsoEG->at( l1NoIsoEG ).bx() == 0 ) noIsoEGKeys.push_back( triggerObjectsStandAlone->size() - 1 );
650 l1ObjectTypeMap.insert( std::make_pair(
NoIsoEG, noIsoEGKeys ) );
656 if ( handleL1ExtraIsoEG.
isValid() ) {
657 std::vector< unsigned > isoEGKeys;
658 for (
size_t l1IsoEG = 0; l1IsoEG < handleL1ExtraIsoEG->size(); ++l1IsoEG ) {
659 if (
mainBxOnly_ && handleL1ExtraIsoEG->at( l1IsoEG ).bx() != 0 )
continue;
665 const reco::LeafCandidate leafCandidate( *( handleL1ExtraIsoEG->at( l1IsoEG ).reco::LeafCandidate::clone() ) );
672 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
673 if ( handleL1ExtraIsoEG->at( l1IsoEG ).bx() == 0 ) isoEGKeys.push_back( triggerObjectsStandAlone->size() - 1 );
675 l1ObjectTypeMap.insert( std::make_pair(
IsoEG, isoEGKeys ) );
681 if ( handleL1ExtraCenJet.
isValid() ) {
682 std::vector< unsigned > cenJetKeys;
683 for (
size_t l1CenJet = 0; l1CenJet < handleL1ExtraCenJet->size(); ++l1CenJet ) {
684 if (
mainBxOnly_ && handleL1ExtraCenJet->at( l1CenJet ).bx() != 0 )
continue;
690 const reco::LeafCandidate leafCandidate( *( handleL1ExtraCenJet->at( l1CenJet ).reco::LeafCandidate::clone() ) );
697 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
698 if ( handleL1ExtraCenJet->at( l1CenJet ).bx() == 0 ) cenJetKeys.push_back( triggerObjectsStandAlone->size() - 1 );
700 l1ObjectTypeMap.insert( std::make_pair(
CenJet, cenJetKeys ) );
706 if ( handleL1ExtraForJet.
isValid() ) {
707 std::vector< unsigned > forJetKeys;
708 for (
size_t l1ForJet = 0; l1ForJet < handleL1ExtraForJet->size(); ++l1ForJet ) {
709 if (
mainBxOnly_ && handleL1ExtraForJet->at( l1ForJet ).bx() != 0 )
continue;
715 const reco::LeafCandidate leafCandidate( *( handleL1ExtraForJet->at( l1ForJet ).reco::LeafCandidate::clone() ) );
722 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
723 if ( handleL1ExtraForJet->at( l1ForJet ).bx() == 0 ) forJetKeys.push_back( triggerObjectsStandAlone->size() - 1 );
725 l1ObjectTypeMap.insert( std::make_pair(
ForJet, forJetKeys ) );
731 if ( handleL1ExtraTauJet.
isValid() ) {
732 std::vector< unsigned > tauJetKeys;
733 for (
size_t l1TauJet = 0; l1TauJet < handleL1ExtraTauJet->size(); ++l1TauJet ) {
734 if (
mainBxOnly_ && handleL1ExtraTauJet->at( l1TauJet ).bx() != 0 )
continue;
740 const reco::LeafCandidate leafCandidate( *( handleL1ExtraTauJet->at( l1TauJet ).reco::LeafCandidate::clone() ) );
747 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
748 if ( handleL1ExtraTauJet->at( l1TauJet ).bx() == 0 ) tauJetKeys.push_back( triggerObjectsStandAlone->size() - 1 );
750 l1ObjectTypeMap.insert( std::make_pair(
TauJet, tauJetKeys ) );
756 if ( handleL1ExtraETM.
isValid() ) {
757 std::vector< unsigned > etmKeys;
758 for (
size_t l1ETM = 0; l1ETM < handleL1ExtraETM->size(); ++l1ETM ) {
759 if (
mainBxOnly_ && handleL1ExtraETM->at( l1ETM ).bx() != 0 )
continue;
765 const reco::LeafCandidate leafCandidate( *( handleL1ExtraETM->at( l1ETM ).reco::LeafCandidate::clone() ) );
772 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
773 if ( handleL1ExtraETM->at( l1ETM ).bx() == 0 ) etmKeys.push_back( triggerObjectsStandAlone->size() - 1 );
775 l1ObjectTypeMap.insert( std::make_pair(
ETM, etmKeys ) );
776 }
else LogError(
"l1ExtraValid" ) <<
"l1extra::L1EtMissParticleCollection product with InputTag '" <<
tagL1ExtraETM_.
encode() <<
"' not in event";
781 if ( handleL1ExtraHTM.
isValid() ) {
782 std::vector< unsigned > htmKeys;
783 for (
size_t l1HTM = 0; l1HTM < handleL1ExtraHTM->size(); ++l1HTM ) {
784 if (
mainBxOnly_ && handleL1ExtraHTM->at( l1HTM ).bx() != 0 )
continue;
790 const reco::LeafCandidate leafCandidate( *( handleL1ExtraHTM->at( l1HTM ).reco::LeafCandidate::clone() ) );
797 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
798 if ( handleL1ExtraHTM->at( l1HTM ).bx() == 0 ) htmKeys.push_back( triggerObjectsStandAlone->size() - 1 );
800 l1ObjectTypeMap.insert( std::make_pair(
HTM, htmKeys ) );
801 }
else LogError(
"l1ExtraValid" ) <<
"l1extra::L1EtMissParticleCollection product with InputTag '" <<
tagL1ExtraHTM_.
encode() <<
"' not in event";
809 auto triggerAlgos = std::make_unique<TriggerAlgorithmCollection>();
813 std::map< L1GtObject, trigger::TriggerObjectType > mapObjectTypes;
826 auto const & l1GtAlgorithms = handleL1GtTriggerMenu->
gtAlgorithmMap();
828 auto const & l1GtConditionsVector = handleL1GtTriggerMenu->
gtConditionMap();
831 for (
size_t iCv = 0; iCv < l1GtConditionsVector.size(); ++iCv ) {
832 l1GtConditions.insert( l1GtConditionsVector.at( iCv ).begin(), l1GtConditionsVector.at( iCv ).end() );
834 triggerAlgos->reserve( l1GtAlgorithms.size() + l1GtTechTriggers.size() );
837 if( ! handleL1GlobalTriggerObjectMaps.
isValid() ) {
839 <<
"No L1 objects and GTL results available for physics algorithms";
845 LogError(
"l1ObjectMap" ) <<
"ParameterSet registry not available\n" 846 <<
"Skipping conditions for all L1 physics algorithm names in this run";
850 LogInfo(
"l1ObjectMap" ) <<
"ParameterSet registry not available\n" 851 <<
"Skipping conditions for all L1 physics algorithm names in this event";
855 for (
CItAlgo iAlgo = l1GtAlgorithms.begin(); iAlgo != l1GtAlgorithms.end(); ++iAlgo ) {
865 LogError(
"l1Algo" ) <<
"L1 physics algorithm '" <<
algoName <<
"' not found in the L1 menu\n" 870 LogError(
"l1Algo" ) <<
"L1 physics algorithm '" <<
algoName <<
"' does not have category 'AlgorithmTrigger' from 'L1GtUtils'\n" 874 bool decisionBeforeMask;
875 bool decisionAfterMask;
878 int error( l1GtUtils.
l1Results( iEvent,
algoName, decisionBeforeMask, decisionAfterMask, prescale, mask ) );
880 LogError(
"l1Algo" ) <<
"L1 physics algorithm '" <<
algoName <<
"' decision has error code " <<
error <<
" from 'L1GtUtils'\n" 887 if( ! handleL1GlobalTriggerObjectMaps.
isValid() ) {
888 triggerAlgos->push_back( triggerAlgo );
892 LogError(
"l1ObjectMap" ) <<
"L1 physics algorithm '" <<
algoName <<
"' is missing in L1GlobalTriggerObjectMaps\n" 893 <<
"Skipping conditions and GTL result";
894 triggerAlgos->push_back( triggerAlgo );
897 bool algorithmResult = handleL1GlobalTriggerObjectMaps->
algorithmResult(bit);
899 if ( ( algorithmResult != decisionBeforeMask ) && ( decisionBeforeMask ==
true ) ) {
900 LogInfo(
"l1ObjectMap" ) <<
"L1 physics algorithm '" <<
algoName <<
"' with different decisions in\n" 901 <<
"L1GlobalTriggerObjectMaps (GTL result) : " << algorithmResult <<
"\n" 902 <<
"L1GlobalTriggerReadoutRecord (decision before mask): " << decisionBeforeMask;
908 triggerAlgos->push_back( triggerAlgo );
913 LogError(
"l1ObjectMap" ) <<
"L1 physics algorithm name '" <<
algoName <<
"' not available in ParameterSet registry\n" 914 <<
"Skipping conditions for this algorithm in this run";
916 LogInfo(
"l1ObjectMap" ) <<
"L1 physics algorithm name '" <<
algoName <<
"' not available in ParameterSet registry\n" 917 <<
"Skipping conditions for this algorithm in this event";
919 triggerAlgos->push_back( triggerAlgo );
924 for (
unsigned iT = 0; iT < conditionNames.size(); ++iT ) {
925 size_t key( triggerConditions->size() );
926 for (
size_t iC = 0; iC < triggerConditions->size(); ++iC ) {
927 if ( conditionNames.at(iT) == triggerConditions->at( iC ).name() ) {
932 if (
key == triggerConditions->size() ) {
934 LogError(
"l1CondMap" ) <<
"More condition names from ParameterSet registry than the " << conditions.
nConditions() <<
" conditions in L1GlobalTriggerObjectMaps\n" 935 <<
"Skipping condition " << conditionNames.at(iT) <<
" in algorithm " <<
algoName;
939 if ( l1GtConditions.find( triggerCond.name() ) != l1GtConditions.end() ) {
940 triggerCond.
setCategory( l1GtConditions[ triggerCond.name() ]->condCategory() );
941 triggerCond.setType( l1GtConditions[ triggerCond.name() ]->condType() );
942 const std::vector< L1GtObject > l1ObjectTypes( l1GtConditions[ triggerCond.name() ]->objectType() );
943 for (
size_t iType = 0 ; iType < l1ObjectTypes.size(); ++iType ) {
944 triggerCond.addTriggerObjectType( mapObjectTypes[ l1ObjectTypes.at( iType ) ] );
948 for (
size_t iVV = 0; iVV < combinations.
nCombinations(); ++iVV ) {
952 if ( iV >= l1ObjectTypes.size() ) {
953 LogError(
"l1CondMap" ) <<
"Index " << iV <<
" in combinations vector overshoots size " << l1ObjectTypes.size() <<
" of types vector in conditions map\n" 954 <<
"Skipping object key in condition " << triggerCond.name();
955 }
else if ( l1ObjectTypeMap.find( l1ObjectTypes.at( iV ) ) != l1ObjectTypeMap.end() ) {
956 if ( objectIndex >= l1ObjectTypeMap[ l1ObjectTypes.at( iV ) ].size() ) {
957 LogError(
"l1CondMap" ) <<
"Index " << objectIndex <<
" in combination overshoots number " << l1ObjectTypeMap[ l1ObjectTypes.at( iV ) ].size() <<
"of according trigger objects\n" 958 <<
"Skipping object key in condition " << triggerCond.name();
960 const unsigned objectKey( l1ObjectTypeMap[ l1ObjectTypes.at( iV ) ].at( objectIndex ) );
961 triggerCond.addObjectKey( objectKey );
963 triggerObjectsStandAlone->at( objectKey ).addAlgorithmName( triggerAlgo.
name(), ( triggerAlgo.
decision() && triggerCond.wasAccept() ) );
964 triggerObjectsStandAlone->at( objectKey ).addConditionName( triggerCond.name() );
969 LogWarning(
"l1CondMap" ) <<
"L1 conditions '" << triggerCond.name() <<
"' not found in the L1 menu\n" 970 <<
"Remains incomplete";
972 triggerConditions->push_back( triggerCond );
976 triggerAlgos->push_back( triggerAlgo );
979 for (
CItAlgo iAlgo = l1GtTechTriggers.begin(); iAlgo != l1GtTechTriggers.end(); ++iAlgo ) {
989 LogError(
"l1Algo" ) <<
"L1 technical trigger '" <<
algoName <<
"' not found in the L1 menu\n" 994 LogError(
"l1Algo" ) <<
"L1 technical trigger '" <<
algoName <<
"' does not have category 'TechnicalTrigger' from 'L1GtUtils'\n" 998 bool decisionBeforeMask;
999 bool decisionAfterMask;
1002 int error( l1GtUtils.
l1Results( iEvent,
algoName, decisionBeforeMask, decisionAfterMask, prescale, mask ) );
1004 LogError(
"l1Algo" ) <<
"L1 technical trigger '" <<
algoName <<
"' decision has error code " <<
error <<
" from 'L1GtUtils'\n" 1010 triggerAlgos->push_back( triggerAlgo );
1023 obj.packPathNames(names);
1035 const std::vector<std::string> & pathNames = hltConfig.
triggerNames();
1036 unsigned int sizePaths = pathNames.size();
1037 for (
unsigned int indexPath = 0; indexPath < sizePaths; ++indexPath ) {
1038 const std::string & namePath = pathNames[indexPath];
1040 const std::vector<std::string> & nameModules = hltConfig.
moduleLabels(indexPath);
1041 unsigned int sizeModulesPath = nameModules.size();
1042 bool lastFilter =
true;
1043 unsigned int iM = sizeModulesPath;
1045 const std::string & nameFilter = nameModules[--iM];
1046 if (hltConfig.
moduleEDMType(nameFilter) !=
"EDFilter")
continue;
1047 if (hltConfig.
moduleType(nameFilter) ==
"HLTBool")
continue;
1048 bool saveTags = hltConfig.
saveTags(nameFilter);
1049 insert( nameFilter, namePath, indexPath, lastFilter, saveTags );
1050 if (saveTags) lastFilter =
false;
unsigned int set() const
low-level const accessors for data members
unsigned int size() const
number of trigger paths in trigger table
const std::string & collectionTagEncoded(trigger::size_type index) const
collection_type::const_iterator const_iterator
T getParameter(std::string const &) const
void callWhenNewProductsRegistered(std::function< void(BranchDescription const &)> const &func)
edm::GetterOfProducts< l1extra::L1MuonParticleCollection > l1ExtraMuGetter_
edm::GetterOfProducts< trigger::HLTPrescaleTable > hltPrescaleTableEventGetter_
bool getByLabel(std::string const &label, Handle< PROD > &result) const
unsigned char getObjectIndex(unsigned combination, unsigned object) const
bool wasrun() const
Was at least one path run?
bool saveTags(const std::string &module) const
Is module an L3 filter (ie, tracked saveTags=true)
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
std::pair< std::vector< std::pair< std::string, int > >, int > prescaleValuesInDetail(const edm::Event &iEvent, const edm::EventSetup &iSetup, const std::string &trigger)
Analysis-level L1 trigger algorithm class.
virtual void beginLuminosityBlock(const edm::LuminosityBlock &iLuminosityBlock, const edm::EventSetup &iSetup) override
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
edm::InputTag tagL1ExtraForJet_
const std::string moduleType(const std::string &module) const
C++ class name of module.
bool autoProcessNameL1ExtraHTM_
trigger::size_type sizeFilters() const
bool autoProcessNameL1ExtraIsoEG_
static const HistoName names[]
edm::InputTag tagTriggerEvent_
PATTriggerProducer(const edm::ParameterSet &iConfig)
bool setStatus(int status)
static PFTauRenderPlugin instance
bool getByToken(EDGetToken token, Handle< PROD > &result) const
enum start value shifted to 81 so as to avoid clashes with PDG codes
bool autoProcessNameL1ExtraTauJet_
virtual bool hasCollection(const std::string &collName) const
Checks, if a certain label of original collection is assigned (method overrides)
#define DEFINE_FWK_MODULE(type)
edm::InputTag tagTriggerResults_
const bool l1AlgoTechTrigBitNumber(const std::string &nameAlgoTechTrig, TriggerCategory &trigCategory, int &bitNumber) const
static const unsigned int NumberTechnicalTriggers
const std::vector< std::vector< std::pair< bool, std::string > > > & hltL1GTSeeds() const
bool accept() const
Has at least one path accepted the event?
const std::vector< std::string > & triggerNames() const
names of trigger paths
const Keys & filterKeys(trigger::size_type index) const
The single EDProduct containing the HLT Prescale Table.
void setGtlResult(bool gtlResult)
Set L1 algorithm GTL result.
edm::GetterOfProducts< trigger::TriggerEvent > triggerEventGetter_
trigger::size_type filterIndex(const edm::InputTag &filterTag) const
find index of filter in data-member vector from filter tag
unsigned short nObjectsPerCombination() const
bool exists(std::string const ¶meterName) const
checks if a parameter exists
const std::string moduleEDMType(const std::string &module) const
C++ base class name of module.
virtual void beginRun(const edm::Run &iRun, const edm::EventSetup &iSetup) override
edm::InputTag tagL1ExtraETM_
void addTriggerObjectType(trigger::TriggerObjectType triggerObjectType)
Add a new trigger object type identifier.
std::string hltPrescaleLabel_
Strings::size_type size() const
void consistencyCheck() const
void addObjectKey(unsigned objectKey)
Add a new trigger object collection index.
edm::GetterOfProducts< trigger::HLTPrescaleTable > hltPrescaleTableLumiGetter_
bool getByLabel(std::string const &label, Handle< PROD > &result) const
const std::map< std::string, std::vector< unsigned int > > & prescaleTable() const
const std::map< std::string, std::vector< unsigned int > > & table() const
bool autoProcessNameL1ExtraMu_
void addFilterLabel(const std::string &filterLabel)
Methods.
bool autoProcessNameL1ExtraCenJet_
const std::string & moduleLabel(unsigned int trigger, unsigned int module) const
edm::GetterOfProducts< l1extra::L1JetParticleCollection > l1ExtraForJetGetter_
bool algorithmExists(int algorithmBitNumber) const
Returns true if there is an entry for this algorithm bit number.
const Keys & collectionKeys() const
const std::vector< std::string > & saveTagsModules(unsigned int trigger) const
Single trigger physics object (e.g., an isolated muon)
void addPathName(const std::string &pathName, bool pathLastFilterAccepted=true, bool pathL3FilterAccepted=true)
Adds a new HLT path name.
bool addPathModuleLabels_
Analysis-level HLTrigger filter class.
const Vids & filterIds(trigger::size_type index) const
Produces the full or stand-alone PAT trigger information collections.
unsigned int prescaleValue(unsigned int set, const std::string &trigger) const
HLT prescale value in specific prescale set for a specific trigger path.
unsigned int moduleIndex(unsigned int trigger, const std::string &module) const
slot position of module on trigger path (0 to size-1)
edm::ParameterSetID const & namesParameterSetID() const
edm::InputTag tagL1ExtraIsoEG_
void setCollection(const std::string &collName)
Methods.
Analysis-level L1 trigger condition class.
Analysis-level HLTrigger path class.
static const unsigned int NumberPhysTriggersExtended
const TriggerObjectCollection & getObjects() const
const std::vector< std::string > & labels() const
void clear(CLHEP::HepGenMatrix &m)
Helper function: Reset all elements of a matrix to 0.
edm::GetterOfProducts< l1extra::L1JetParticleCollection > l1ExtraTauJetGetter_
trigger::HLTPrescaleTable hltPrescaleTableLumi_
const std::string & name() const
Get L1 algorithm name.
unsigned int index(const unsigned int i) const
Get index (slot position) of module giving the decision of the ith path.
std::string filterLabel(trigger::size_type index) const
bool error() const
Has any path encountered an error (exception)
ProcessHistory const & processHistory() const
const int l1Results(const edm::Event &iEvent, const std::string &nameAlgoTechTrig, bool &decisionBeforeMask, bool &decisionAfterMask, int &prescaleFactor, int &triggerMask) const
edm::GetterOfProducts< l1extra::L1EtMissParticleCollection > l1ExtraHTMGetter_
static const unsigned int NumberPhysTriggers
void setSaveTags(bool saveTags)
Set the L3 status.
bool insert(Storage &iStorage, ItemType *iItem, const IdTag &iIdTag)
void setLogicalExpression(const std::string &expression)
Set L1 algorithm logical expression.
edm::EDGetTokenT< L1GlobalTriggerObjectMaps > l1GlobalTriggerObjectMapsToken_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
unsigned nConditions() const
edm::GetterOfProducts< l1extra::L1EmParticleCollection > l1ExtraNoIsoEGGetter_
int prescaleSet(const edm::Event &iEvent, const edm::EventSetup &iSetup)
edm::GetterOfProducts< l1extra::L1EtMissParticleCollection > l1ExtraETMGetter_
const std::vector< std::string > & moduleLabels(unsigned int trigger) const
label(s) of module(s) on a trigger path
edm::GetterOfProducts< trigger::HLTPrescaleTable > hltPrescaleTableRunGetter_
edm::InputTag tagL1GlobalTriggerObjectMaps_
edm::InputTag tagL1ExtraMu_
const edm::InputTag filterTag(trigger::size_type index) const
ModuleLabelToPathAndFlags moduleLabelToPathAndFlags_
L1GtUtils const & l1GtUtils() const
void setCategory(L1GtConditionCategory category)
Set the condition category.
CombinationsInCondition getCombinationsInCondition(int algorithmBitNumber, unsigned conditionNumber) const
unsigned nCombinations() const
void init(const HLTConfigProvider &)
trigger::size_type sizeObjects() const
std::string const & triggerName(unsigned int index) const
std::vector< size_type > Keys
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
edm::GetterOfProducts< l1extra::L1EmParticleCollection > l1ExtraIsoEGGetter_
bool autoProcessNameL1ExtraForJet_
trigger::size_type sizeCollections() const
other
const std::vector< std::string > & prescaleLabels() const
low-level data member access
edm::GetterOfProducts< l1extra::L1JetParticleCollection > l1ExtraCenJetGetter_
HLTConfigProvider const & hltConfigProvider() const
void addConditionKey(unsigned conditionKey)
Add a new trigger condition collection index.
void setType(const std::string &type)
Set the filter module type.
edm::GetterOfProducts< edm::TriggerResults > triggerResultsGetter_
edm::InputTag tagL1ExtraTauJet_
math::PtEtaPhiMLorentzVector PolarLorentzVector
Lorentz vector.
unsigned int prescaleSize() const
trigger::HLTPrescaleTable hltPrescaleTableRun_
bool getConditionResult(unsigned condition) const
ConditionsInAlgorithm getConditionsInAlgorithm(int algorithmBitNumber) const
bool autoProcessNameL1ExtraETM_
std::vector< std::string > exludeCollections_
bool autoProcessNameL1ExtraNoIsoEG_
std::vector< L1Seed > L1SeedCollection
Collection of L1Seed.
void addTriggerObjectType(trigger::TriggerObjectType triggerObjectType)
Add a new trigger object type identifier.
bool algorithmResult(int algorithmBitNumber) const
Returns whether an algorithm trigger passed or failed.
static std::string const triggerPaths
edm::InputTag tagL1ExtraNoIsoEG_
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
edm::InputTag tagL1ExtraCenJet_
HLTPrescaleProvider hltPrescaleProvider_
Analysis-level trigger object class (stand-alone)
edm::InputTag tagL1ExtraHTM_
edm::ParameterSet * l1PSet_
std::string labelHltPrescaleTable_