45 nameProcess_( iConfig.getParameter< std::
string >(
"processName" ) ),
46 autoProcessName_( nameProcess_ ==
"*" ),
47 onlyStandAlone_( iConfig.getParameter< bool >(
"onlyStandAlone" ) ),
51 tagL1GlobalTriggerObjectMaps_(
"l1L1GtObjectMap" ),
60 autoProcessNameL1ExtraMu_(
false ),
61 autoProcessNameL1ExtraNoIsoEG_(
false ),
62 autoProcessNameL1ExtraIsoEG_(
false ),
63 autoProcessNameL1ExtraCenJet_(
false ),
64 autoProcessNameL1ExtraForJet_(
false ),
65 autoProcessNameL1ExtraTauJet_(
false ),
66 autoProcessNameL1ExtraETM_(
false ),
67 autoProcessNameL1ExtraHTM_(
false ),
71 hltConfigInit_(
false ),
73 tagTriggerResults_(
"TriggerResults" ),
74 tagTriggerEvent_(
"hltTriggerSummaryAOD" ),
76 labelHltPrescaleTable_(),
77 hltPrescaleTableRun_(),
78 hltPrescaleTableLumi_(),
79 addPathModuleLabels_(
false ),
80 packPathNames_( iConfig.existsAs<bool>(
"packTriggerPathNames") ? iConfig.getParameter<bool>(
"packTriggerPathNames") :
false ),
81 packPrescales_( iConfig.existsAs<bool>(
"packTriggerPrescales") ? iConfig.getParameter<bool>(
"packTriggerPrescales") :
true )
88 if ( iConfig.
exists(
"l1ExtraMu" ) ) {
95 if ( iConfig.
exists(
"l1ExtraNoIsoEG" ) ) {
102 if ( iConfig.
exists(
"l1ExtraIsoEG" ) ) {
109 if ( iConfig.
exists(
"l1ExtraCenJet" ) ) {
116 if ( iConfig.
exists(
"l1ExtraForJet" ) ) {
123 if ( iConfig.
exists(
"l1ExtraTauJet" ) ) {
130 if ( iConfig.
exists(
"l1ExtraETM" ) ) {
137 if ( iConfig.
exists(
"l1ExtraHTM" ) ) {
157 produces< TriggerAlgorithmCollection >();
158 produces< TriggerConditionCollection >();
159 produces< TriggerPathCollection >();
160 produces< TriggerFilterCollection >();
161 produces< TriggerObjectCollection >();
164 produces< PackedTriggerPrescales >();
166 produces< TriggerObjectStandAloneCollection >();
199 LogError(
"autoProcessName" ) <<
"trigger::TriggerEvent product with label '" <<
tagTriggerEvent_.
label() <<
"' not produced according to process history of input data\n"
200 <<
"No trigger information produced";
203 LogInfo(
"autoProcessName" ) <<
"HLT process name' " <<
nameProcess_ <<
"' used for PAT trigger information";
239 bool changed(
true );
241 LogError(
"hltConfig" ) <<
"HLT config extraction error with process name '" <<
nameProcess_ <<
"'";
243 LogError(
"hltConfig" ) <<
"HLT config size error";
258 if ( handleHltPrescaleTable.
isValid() ) {
282 if ( handleHltPrescaleTable.
isValid() ) {
299 std::auto_ptr< PackedTriggerPrescales > packedPrescales;
312 if( ! handleTriggerResults.
isValid() ) {
314 <<
"No HLT information produced";
316 }
else if ( ! handleTriggerEvent.
isValid() ) {
318 <<
"No HLT information produced";
335 if ( handleHltPrescaleTable.
isValid() ) {
336 hltPrescaleTable =
trigger::HLTPrescaleTable( handleHltPrescaleTable->set(), handleHltPrescaleTable->labels(), handleHltPrescaleTable->table() );
340 if ( hltPrescaleTable.size() == 0 ) {
343 <<
"Using default from event setup";
348 LogDebug(
"hltPrescaleTable" ) <<
"HLT prescale table found in event setup";
350 LogWarning(
"hltPrescaleSet" ) <<
"HLTPrescaleTable from event setup has error";
354 unsigned set( hltPrescaleTable.set() );
355 if ( hltPrescaleTable.size() > 0 ) {
357 bool foundPrescaleLabel(
false );
358 for (
unsigned iLabel = 0; iLabel < hltPrescaleTable.labels().size(); ++iLabel ) {
361 foundPrescaleLabel =
true;
365 if ( ! foundPrescaleLabel ) {
372 LogError(
"hltPrescaleTable" ) <<
"No HLT prescale table found\n"
373 <<
"Using default empty table with all prescales 1";
378 const unsigned sizeFilters( handleTriggerEvent->sizeFilters() );
379 const unsigned sizeObjects( handleTriggerEvent->sizeObjects() );
381 std::map< std::string, int > moduleStates;
385 triggerPaths->reserve( sizePaths );
387 for (
size_t indexPath = 0; indexPath < sizePaths; ++indexPath ) {
388 const std::string & namePath = pathNames.at( indexPath );
389 unsigned indexLastFilterPathModules( handleTriggerResults->index( indexPath ) + 1 );
390 unsigned indexLastFilterFilters( sizeFilters );
391 while ( indexLastFilterPathModules > 0 ) {
392 --indexLastFilterPathModules;
394 indexLastFilterFilters = handleTriggerEvent->filterIndex(
InputTag( labelLastFilterPathModules,
"",
nameProcess_ ) );
395 if ( indexLastFilterFilters < sizeFilters ) {
400 TriggerPath triggerPath( namePath, indexPath,
hltConfig_.
prescaleValue( set, namePath ), handleTriggerResults->wasrun( indexPath ), handleTriggerResults->accept( indexPath ), handleTriggerResults->error( indexPath ), indexLastFilterPathModules,
hltConfig_.
saveTagsModules( namePath ).size() );
403 assert( indexLastFilterPathModules < sizeModulesPath );
404 std::map< unsigned, std::string > indicesModules;
405 for (
size_t iM = 0; iM < sizeModulesPath; ++iM ) {
408 triggerPath.addModule( nameModule );
410 const unsigned indexFilter( handleTriggerEvent->filterIndex(
InputTag( nameModule,
"",
nameProcess_ ) ) );
411 if ( indexFilter < sizeFilters ) {
412 triggerPath.addFilterIndex( indexFilter );
415 indicesModules.insert( std::pair< unsigned, std::string >( slotModule, nameModule ) );
419 for ( L1SeedCollection::const_iterator iSeed = l1Seeds.begin(); iSeed != l1Seeds.end(); ++iSeed ) {
420 triggerPath.addL1Seed( *iSeed );
423 triggerPaths->push_back( triggerPath );
425 for ( std::map< unsigned, std::string >::const_iterator iM = indicesModules.begin(); iM != indicesModules.end(); ++iM ) {
426 if ( iM->first < indexLastFilterPathModules ) {
427 moduleStates[ iM->second ] = 1;
428 }
else if ( iM->first == indexLastFilterPathModules ) {
429 moduleStates[ iM->second ] = handleTriggerResults->accept( indexPath );
430 }
else if ( moduleStates.find( iM->second ) == moduleStates.end() ) {
431 moduleStates[ iM->second ] = -1;
436 iEvent.
put( triggerPaths );
442 std::multimap< trigger::size_type, int > objectTypes;
443 std::multimap< trigger::size_type, std::string > filterLabels;
445 for (
size_t iF = 0; iF < sizeFilters; ++iF ) {
446 const std::string nameFilter( handleTriggerEvent->filterLabel( iF ) );
448 const trigger::Vids & types = handleTriggerEvent->filterIds( iF );
449 assert( types.size() == keys.size() );
450 for (
size_t iK = 0; iK < keys.size(); ++iK ) {
451 filterLabels.insert( std::pair< trigger::size_type, std::string >( keys[ iK ], nameFilter ) );
452 objectTypes.insert( std::pair< trigger::size_type, int >( keys[ iK ], types[ iK ] ) );
459 triggerObjectsStandAlone->reserve( sizeObjects );
461 const trigger::Keys & collectionKeys( handleTriggerEvent->collectionKeys() );
462 std::map< trigger::size_type, trigger::size_type > newObjectKeys;
463 for (
size_t iO = 0, iC = 0, nC = handleTriggerEvent->sizeCollections(); iO < sizeObjects && iC < nC; ++iO ) {
467 while ( iO >= collectionKeys[ iC ] ) ++iC;
468 triggerObject.
setCollection( handleTriggerEvent->collectionTagEncoded( iC ) );
470 typedef std::multimap< trigger::size_type, int >::const_iterator it_type;
471 for (std::pair<it_type,it_type> trange = objectTypes.equal_range(iO);
472 trange.first != trange.second; ++trange.first) {
473 triggerObject.addTriggerObjectType( trange.first->second );
479 bool excluded(
false );
487 if ( excluded )
continue;
488 typedef std::multimap< trigger::size_type, std::string >::const_iterator it_fl;
489 for (std::pair<it_fl,it_fl> frange = filterLabels.equal_range(iO); frange.first != frange.second; ++frange.first) {
492 for (std::vector<ModuleLabelToPathAndFlags::PathAndFlags>::const_iterator iP = paths.begin(); iP != paths.end(); ++iP) {
493 bool pathFired = handleTriggerResults->wasrun( iP->pathIndex ) && handleTriggerResults->accept( iP->pathIndex );
494 triggerObjectStandAlone.
addPathName( iP->pathName, pathFired && iP->lastFilter, pathFired && iP->l3Filter );
498 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
500 triggerObjects->push_back( triggerObject );
508 triggerFilters->reserve( sizeFilters );
509 for (
size_t iF = 0; iF < sizeFilters; ++iF ) {
510 const std::string nameFilter( handleTriggerEvent->filterTag( iF ).label() );
512 const trigger::Vids & types = handleTriggerEvent->filterIds( iF );
516 triggerFilter.
setType( typeFilter );
519 for (
size_t iK = 0; iK < keys.size(); ++iK ) {
521 if ( newObjectKeys.find( keys.at( iK ) ) != newObjectKeys.end() ) {
522 if ( newObjectKeys[ keys.at( iK ) ] == sizeObjects )
continue;
523 triggerFilter.
addObjectKey( newObjectKeys[ keys.at( iK ) ] );
526 LogWarning(
"triggerObjectKey" ) <<
"TriggerFilter '" << nameFilter <<
"' requests non-existing TriggerObject key " << keys.at( iK ) <<
"\n"
527 <<
"Skipping object assignment";
531 std::map< std::string, int >::iterator iS( moduleStates.find( nameFilter ) );
532 if ( iS != moduleStates.end() ) {
533 if ( ! triggerFilter.
setStatus( iS->second ) ) {
540 triggerFilters->push_back( triggerFilter );
543 iEvent.
put( triggerFilters );
549 for (
unsigned int i = 0,
n = names.
size();
i <
n; ++
i) {
552 iEvent.
put( packedPrescales );
561 std::map< L1GtObject, std::vector< unsigned > > l1ObjectTypeMap;
566 if ( handleL1ExtraMu.
isValid() ) {
567 std::vector< unsigned > muKeys;
568 for (
size_t l1Mu = 0; l1Mu < handleL1ExtraMu->size(); ++l1Mu ) {
569 if (
mainBxOnly_ && handleL1ExtraMu->at( l1Mu ).bx() != 0 )
continue;
575 const reco::LeafCandidate leafCandidate( *( handleL1ExtraMu->at( l1Mu ).reco::LeafCandidate::clone() ) );
582 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
583 if ( handleL1ExtraMu->at( l1Mu ).bx() == 0 ) muKeys.push_back( triggerObjectsStandAlone->size() - 1 );
585 l1ObjectTypeMap.insert( std::make_pair(
Mu, muKeys ) );
586 }
else LogError(
"l1ExtraValid" ) <<
"l1extra::L1MuonParticleCollection product with InputTag '" <<
tagL1ExtraMu_.
encode() <<
"' not in event";
592 if ( handleL1ExtraNoIsoEG.
isValid() ) {
593 std::vector< unsigned > noIsoEGKeys;
594 for (
size_t l1NoIsoEG = 0; l1NoIsoEG < handleL1ExtraNoIsoEG->size(); ++l1NoIsoEG ) {
595 if (
mainBxOnly_ && handleL1ExtraNoIsoEG->at( l1NoIsoEG ).bx() != 0 )
continue;
601 const reco::LeafCandidate leafCandidate( *( handleL1ExtraNoIsoEG->at( l1NoIsoEG ).reco::LeafCandidate::clone() ) );
608 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
609 if ( handleL1ExtraNoIsoEG->at( l1NoIsoEG ).bx() == 0 ) noIsoEGKeys.push_back( triggerObjectsStandAlone->size() - 1 );
611 l1ObjectTypeMap.insert( std::make_pair(
NoIsoEG, noIsoEGKeys ) );
618 if ( handleL1ExtraIsoEG.
isValid() ) {
619 std::vector< unsigned > isoEGKeys;
620 for (
size_t l1IsoEG = 0; l1IsoEG < handleL1ExtraIsoEG->size(); ++l1IsoEG ) {
621 if (
mainBxOnly_ && handleL1ExtraIsoEG->at( l1IsoEG ).bx() != 0 )
continue;
627 const reco::LeafCandidate leafCandidate( *( handleL1ExtraIsoEG->at( l1IsoEG ).reco::LeafCandidate::clone() ) );
634 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
635 if ( handleL1ExtraIsoEG->at( l1IsoEG ).bx() == 0 ) isoEGKeys.push_back( triggerObjectsStandAlone->size() - 1 );
637 l1ObjectTypeMap.insert( std::make_pair(
IsoEG, isoEGKeys ) );
644 if ( handleL1ExtraCenJet.
isValid() ) {
645 std::vector< unsigned > cenJetKeys;
646 for (
size_t l1CenJet = 0; l1CenJet < handleL1ExtraCenJet->size(); ++l1CenJet ) {
647 if (
mainBxOnly_ && handleL1ExtraCenJet->at( l1CenJet ).bx() != 0 )
continue;
653 const reco::LeafCandidate leafCandidate( *( handleL1ExtraCenJet->at( l1CenJet ).reco::LeafCandidate::clone() ) );
660 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
661 if ( handleL1ExtraCenJet->at( l1CenJet ).bx() == 0 ) cenJetKeys.push_back( triggerObjectsStandAlone->size() - 1 );
663 l1ObjectTypeMap.insert( std::make_pair(
CenJet, cenJetKeys ) );
670 if ( handleL1ExtraForJet.
isValid() ) {
671 std::vector< unsigned > forJetKeys;
672 for (
size_t l1ForJet = 0; l1ForJet < handleL1ExtraForJet->size(); ++l1ForJet ) {
673 if (
mainBxOnly_ && handleL1ExtraForJet->at( l1ForJet ).bx() != 0 )
continue;
679 const reco::LeafCandidate leafCandidate( *( handleL1ExtraForJet->at( l1ForJet ).reco::LeafCandidate::clone() ) );
686 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
687 if ( handleL1ExtraForJet->at( l1ForJet ).bx() == 0 ) forJetKeys.push_back( triggerObjectsStandAlone->size() - 1 );
689 l1ObjectTypeMap.insert( std::make_pair(
ForJet, forJetKeys ) );
696 if ( handleL1ExtraTauJet.
isValid() ) {
697 std::vector< unsigned > tauJetKeys;
698 for (
size_t l1TauJet = 0; l1TauJet < handleL1ExtraTauJet->size(); ++l1TauJet ) {
699 if (
mainBxOnly_ && handleL1ExtraTauJet->at( l1TauJet ).bx() != 0 )
continue;
705 const reco::LeafCandidate leafCandidate( *( handleL1ExtraTauJet->at( l1TauJet ).reco::LeafCandidate::clone() ) );
712 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
713 if ( handleL1ExtraTauJet->at( l1TauJet ).bx() == 0 ) tauJetKeys.push_back( triggerObjectsStandAlone->size() - 1 );
715 l1ObjectTypeMap.insert( std::make_pair(
TauJet, tauJetKeys ) );
722 if ( handleL1ExtraETM.
isValid() ) {
723 std::vector< unsigned > etmKeys;
724 for (
size_t l1ETM = 0; l1ETM < handleL1ExtraETM->size(); ++l1ETM ) {
725 if (
mainBxOnly_ && handleL1ExtraETM->at( l1ETM ).bx() != 0 )
continue;
731 const reco::LeafCandidate leafCandidate( *( handleL1ExtraETM->at( l1ETM ).reco::LeafCandidate::clone() ) );
738 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
739 if ( handleL1ExtraETM->at( l1ETM ).bx() == 0 ) etmKeys.push_back( triggerObjectsStandAlone->size() - 1 );
741 l1ObjectTypeMap.insert( std::make_pair(
ETM, etmKeys ) );
742 }
else LogError(
"l1ExtraValid" ) <<
"l1extra::L1EtMissParticleCollection product with InputTag '" <<
tagL1ExtraETM_.
encode() <<
"' not in event";
748 if ( handleL1ExtraHTM.
isValid() ) {
749 std::vector< unsigned > htmKeys;
750 for (
size_t l1HTM = 0; l1HTM < handleL1ExtraHTM->size(); ++l1HTM ) {
751 if (
mainBxOnly_ && handleL1ExtraHTM->at( l1HTM ).bx() != 0 )
continue;
757 const reco::LeafCandidate leafCandidate( *( handleL1ExtraHTM->at( l1HTM ).reco::LeafCandidate::clone() ) );
764 triggerObjectsStandAlone->push_back( triggerObjectStandAlone );
765 if ( handleL1ExtraHTM->at( l1HTM ).bx() == 0 ) htmKeys.push_back( triggerObjectsStandAlone->size() - 1 );
767 l1ObjectTypeMap.insert( std::make_pair(
HTM, htmKeys ) );
768 }
else LogError(
"l1ExtraValid" ) <<
"l1extra::L1EtMissParticleCollection product with InputTag '" <<
tagL1ExtraHTM_.
encode() <<
"' not in event";
780 std::map< L1GtObject, trigger::TriggerObjectType > mapObjectTypes;
797 const std::vector< ConditionMap > l1GtConditionsVector( l1GtTriggerMenu.
gtConditionMap() );
800 for (
size_t iCv = 0; iCv < l1GtConditionsVector.size(); ++iCv ) {
801 l1GtConditions.insert( l1GtConditionsVector.at( iCv ).begin(), l1GtConditionsVector.at( iCv ).end() );
803 triggerAlgos->reserve( l1GtAlgorithms.size() + l1GtTechTriggers.size() );
806 if( ! handleL1GlobalTriggerObjectMaps.
isValid() ) {
808 <<
"No L1 objects and GTL results available for physics algorithms";
810 handleL1GlobalTriggerObjectMaps->consistencyCheck();
814 LogError(
"l1ObjectMap" ) <<
"ParameterSet registry not available\n"
815 <<
"Skipping conditions for all L1 physics algorithm names in this run";
819 LogInfo(
"l1ObjectMap" ) <<
"ParameterSet registry not available\n"
820 <<
"Skipping conditions for all L1 physics algorithm names in this event";
824 for (
CItAlgo iAlgo = l1GtAlgorithms.begin(); iAlgo != l1GtAlgorithms.end(); ++iAlgo ) {
825 const std::string & algoName( iAlgo->second.algoName() );
834 LogError(
"l1Algo" ) <<
"L1 physics algorithm '" << algoName <<
"' not found in the L1 menu\n"
839 LogError(
"l1Algo" ) <<
"L1 physics algorithm '" << algoName <<
"' does not have category 'AlgorithmTrigger' from 'L1GtUtils'\n"
843 bool decisionBeforeMask;
844 bool decisionAfterMask;
849 LogError(
"l1Algo" ) <<
"L1 physics algorithm '" << algoName <<
"' decision has error code " <<
error <<
" from 'L1GtUtils'\n"
856 if( ! handleL1GlobalTriggerObjectMaps.
isValid() ) {
857 triggerAlgos->push_back( triggerAlgo );
860 if ( ! handleL1GlobalTriggerObjectMaps->algorithmExists(bit)) {
861 LogError(
"l1ObjectMap" ) <<
"L1 physics algorithm '" << algoName <<
"' is missing in L1GlobalTriggerObjectMaps\n"
862 <<
"Skipping conditions and GTL result";
863 triggerAlgos->push_back( triggerAlgo );
866 bool algorithmResult = handleL1GlobalTriggerObjectMaps->algorithmResult(bit);
868 if ( ( algorithmResult != decisionBeforeMask ) && ( decisionBeforeMask ==
true ) ) {
869 LogInfo(
"l1ObjectMap" ) <<
"L1 physics algorithm '" << algoName <<
"' with different decisions in\n"
870 <<
"L1GlobalTriggerObjectMaps (GTL result) : " << algorithmResult <<
"\n"
871 <<
"L1GlobalTriggerReadoutRecord (decision before mask): " << decisionBeforeMask;
877 triggerAlgos->push_back( triggerAlgo );
882 LogError(
"l1ObjectMap" ) <<
"L1 physics algorithm name '" << algoName <<
"' not available in ParameterSet registry\n"
883 <<
"Skipping conditions for this algorithm in this run";
885 LogInfo(
"l1ObjectMap" ) <<
"L1 physics algorithm name '" << algoName <<
"' not available in ParameterSet registry\n"
886 <<
"Skipping conditions for this algorithm in this event";
888 triggerAlgos->push_back( triggerAlgo );
891 std::vector<std::string> conditionNames(
l1PSet_->
getParameter<std::vector<std::string> >(algoName) );
893 for (
unsigned iT = 0; iT < conditionNames.size(); ++iT ) {
894 size_t key( triggerConditions->size() );
895 for (
size_t iC = 0; iC < triggerConditions->size(); ++iC ) {
896 if ( conditionNames.at(iT) == triggerConditions->at( iC ).name() ) {
901 if (
key == triggerConditions->size() ) {
903 LogError(
"l1CondMap" ) <<
"More condition names from ParameterSet registry than the " << conditions.
nConditions() <<
" conditions in L1GlobalTriggerObjectMaps\n"
904 <<
"Skipping condition " << conditionNames.at(iT) <<
" in algorithm " << algoName;
908 if ( l1GtConditions.find( triggerCond.name() ) != l1GtConditions.end() ) {
909 triggerCond.
setCategory( l1GtConditions[ triggerCond.name() ]->condCategory() );
910 triggerCond.setType( l1GtConditions[ triggerCond.name() ]->condType() );
911 const std::vector< L1GtObject > l1ObjectTypes( l1GtConditions[ triggerCond.name() ]->objectType() );
912 for (
size_t iType = 0 ; iType < l1ObjectTypes.size(); ++iType ) {
913 triggerCond.addTriggerObjectType( mapObjectTypes[ l1ObjectTypes.at( iType ) ] );
917 for (
size_t iVV = 0; iVV < combinations.
nCombinations(); ++iVV ) {
921 if ( iV >= l1ObjectTypes.size() ) {
922 LogError(
"l1CondMap" ) <<
"Index " << iV <<
" in combinations vector overshoots size " << l1ObjectTypes.size() <<
" of types vector in conditions map\n"
923 <<
"Skipping object key in condition " << triggerCond.name();
924 }
else if ( l1ObjectTypeMap.find( l1ObjectTypes.at( iV ) ) != l1ObjectTypeMap.end() ) {
925 if ( objectIndex >= l1ObjectTypeMap[ l1ObjectTypes.at( iV ) ].size() ) {
926 LogError(
"l1CondMap" ) <<
"Index " << objectIndex <<
" in combination overshoots number " << l1ObjectTypeMap[ l1ObjectTypes.at( iV ) ].size() <<
"of according trigger objects\n"
927 <<
"Skipping object key in condition " << triggerCond.name();
929 const unsigned objectKey( l1ObjectTypeMap[ l1ObjectTypes.at( iV ) ].at( objectIndex ) );
930 triggerCond.addObjectKey( objectKey );
932 triggerObjectsStandAlone->at( objectKey ).addAlgorithmName( triggerAlgo.
name(), ( triggerAlgo.
decision() && triggerCond.wasAccept() ) );
933 triggerObjectsStandAlone->at( objectKey ).addConditionName( triggerCond.name() );
938 LogWarning(
"l1CondMap" ) <<
"L1 conditions '" << triggerCond.name() <<
"' not found in the L1 menu\n"
939 <<
"Remains incomplete";
941 triggerConditions->push_back( triggerCond );
945 triggerAlgos->push_back( triggerAlgo );
948 for (
CItAlgo iAlgo = l1GtTechTriggers.begin(); iAlgo != l1GtTechTriggers.end(); ++iAlgo ) {
949 const std::string & algoName( iAlgo->second.algoName() );
958 LogError(
"l1Algo" ) <<
"L1 technical trigger '" << algoName <<
"' not found in the L1 menu\n"
963 LogError(
"l1Algo" ) <<
"L1 technical trigger '" << algoName <<
"' does not have category 'TechnicalTrigger' from 'L1GtUtils'\n"
967 bool decisionBeforeMask;
968 bool decisionAfterMask;
973 LogError(
"l1Algo" ) <<
"L1 technical trigger '" << algoName <<
"' decision has error code " <<
error <<
" from 'L1GtUtils'\n"
979 triggerAlgos->push_back( triggerAlgo );
984 iEvent.
put( triggerAlgos );
985 iEvent.
put( triggerConditions );
992 obj.packPathNames(names);
996 iEvent.
put( triggerObjectsStandAlone );
1004 const std::vector<std::string> & pathNames = hltConfig_.
triggerNames();
1005 unsigned int sizePaths = pathNames.size();
1006 for (
unsigned int indexPath = 0; indexPath < sizePaths; ++indexPath ) {
1007 const std::string & namePath = pathNames[indexPath];
1009 const std::vector<std::string> & nameModules = hltConfig_.
moduleLabels(indexPath);
1010 unsigned int sizeModulesPath = nameModules.size();
1011 bool lastFilter =
true;
1012 unsigned int iM = sizeModulesPath;
1014 const std::string & nameFilter = nameModules[--iM];
1015 if (hltConfig_.
moduleEDMType(nameFilter) !=
"EDFilter")
continue;
1016 if (hltConfig_.
moduleType(nameFilter) ==
"HLTBool")
continue;
1018 insert( nameFilter, namePath, indexPath, lastFilter, saveTags );
1019 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
collection_type::const_iterator const_iterator
T getParameter(std::string const &) const
bool getByLabel(std::string const &label, Handle< PROD > &result) const
unsigned char getObjectIndex(unsigned combination, unsigned object) const
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
Analysis-level L1 trigger algorithm class.
const int l1Results(const edm::Event &iEvent, const edm::InputTag &l1GtRecordInputTag, const edm::InputTag &l1GtReadoutRecordInputTag, const std::string &nameAlgoTechTrig, bool &decisionBeforeMask, bool &decisionAfterMask, int &prescaleFactor, int &triggerMask) const
virtual void beginLuminosityBlock(const edm::LuminosityBlock &iLuminosityBlock, const edm::EventSetup &iSetup) override
edm::InputTag tagL1ExtraForJet_
const std::string moduleType(const std::string &module) const
C++ class name of module.
bool autoProcessNameL1ExtraHTM_
static const bool useL1EventSetup(true)
bool autoProcessNameL1ExtraIsoEG_
static const HistoName names[]
edm::InputTag tagTriggerEvent_
PATTriggerProducer(const edm::ParameterSet &iConfig)
HLTConfigProvider hltConfig_
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
const std::vector< std::string > & triggerNames() const
names of trigger paths
The single EDProduct containing the HLT Prescale Table.
void setGtlResult(bool gtlResult)
Set L1 algorithm GTL result.
unsigned short nObjectsPerCombination() const
bool exists(std::string const ¶meterName) const
checks if a parameter exists
void insert(const std::string &filter, const std::string &path, unsigned int pathIndex, bool lastFilter, bool l3Filter)
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
std::vector< TriggerObjectStandAlone > TriggerObjectStandAloneCollection
Collection of TriggerObjectStandAlone.
void addObjectKey(unsigned objectKey)
Add a new trigger object collection index.
bool getByLabel(std::string const &label, Handle< PROD > &result) const
const std::map< std::string, std::vector< unsigned int > > & prescaleTable() const
Analysis-level trigger object class.
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
const std::vector< std::string > & saveTagsModules(unsigned int trigger) const
Single trigger physics object (e.g., an isolated muon)
std::vector< TriggerAlgorithm > TriggerAlgorithmCollection
Collection of TriggerAlgorithm.
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.
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::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
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
const std::vector< std::string > & labels() const
trigger::HLTPrescaleTable hltPrescaleTableLumi_
const std::string & name() const
Get L1 algorithm name.
ProcessHistory const & processHistory() const
static const unsigned int NumberPhysTriggers
void setSaveTags(bool saveTags)
Set the L3 status.
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
const std::vector< std::string > & moduleLabels(unsigned int trigger) const
label(s) of module(s) on a trigger path
edm::InputTag tagL1GlobalTriggerObjectMaps_
static const bool useL1GtTriggerMenuLite(false)
std::vector< TriggerFilter > TriggerFilterCollection
Collection of TriggerFilter.
void getL1GtRunCache(const edm::Run &, const edm::EventSetup &, const bool, const bool, const edm::InputTag &)
get all the run-constant quantities for L1 trigger and cache them
edm::InputTag tagL1ExtraMu_
ModuleLabelToPathAndFlags moduleLabelToPathAndFlags_
void setCategory(L1GtConditionCategory category)
Set the condition category.
unsigned nCombinations() const
int prescaleSet(const edm::Event &iEvent, const edm::EventSetup &iSetup) 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
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d'tor
bool autoProcessNameL1ExtraForJet_
const std::vector< std::string > & prescaleLabels() const
low-level data member access
void addConditionKey(unsigned conditionKey)
Add a new trigger condition collection index.
void setType(const std::string &type)
Set the filter module type.
edm::InputTag tagL1ExtraTauJet_
std::vector< TriggerObject > TriggerObjectCollection
Collection of TriggerObject.
math::PtEtaPhiMLorentzVector PolarLorentzVector
Lorentz vector.
unsigned int prescaleSize() const
trigger::HLTPrescaleTable hltPrescaleTableRun_
bool getConditionResult(unsigned condition) const
std::vector< TriggerCondition > TriggerConditionCollection
Collection of TriggerCondition.
void init(const HLTConfigProvider &conf)
bool autoProcessNameL1ExtraETM_
std::vector< std::string > exludeCollections_
bool autoProcessNameL1ExtraNoIsoEG_
volatile std::atomic< bool > shutdown_flag false
std::vector< L1Seed > L1SeedCollection
Collection of L1Seed.
void addTriggerObjectType(trigger::TriggerObjectType triggerObjectType)
Add a new trigger object type identifier.
static std::string const triggerPaths
std::vector< TriggerPath > TriggerPathCollection
Collection of TriggerPath.
edm::InputTag tagL1ExtraNoIsoEG_
edm::InputTag tagL1ExtraCenJet_
Analysis-level trigger object class (stand-alone)
edm::InputTag tagL1ExtraHTM_
edm::ParameterSet * l1PSet_
std::string labelHltPrescaleTable_