|
|
Go to the documentation of this file.
67 : m_muGmtInputTag(parSet.getParameter<
edm::
InputTag>(
"GmtInputTag")),
68 m_caloGctInputTag(parSet.getParameter<
edm::
InputTag>(
"GctInputTag")),
69 m_castorInputTag(parSet.getParameter<
edm::
InputTag>(
"CastorInputTag")),
70 m_technicalTriggersInputTags(parSet.getParameter<
std::
vector<
edm::
InputTag>>(
"TechnicalTriggersInputTags")),
71 m_produceL1GtDaqRecord(parSet.getParameter<
bool>(
"ProduceL1GtDaqRecord")),
72 m_produceL1GtEvmRecord(parSet.getParameter<
bool>(
"ProduceL1GtEvmRecord")),
73 m_produceL1GtObjectMapRecord(parSet.getParameter<
bool>(
"ProduceL1GtObjectMapRecord")),
74 m_writePsbL1GtDaqRecord(parSet.getParameter<
bool>(
"WritePsbL1GtDaqRecord")),
75 m_readTechnicalTriggerRecords(parSet.getParameter<
bool>(
"ReadTechnicalTriggerRecords")),
76 m_emulateBxInEvent(parSet.getParameter<
int>(
"EmulateBxInEvent")),
77 m_recordLength(parSet.getParameter<
std::
vector<
int>>(
"RecordLength")),
78 m_alternativeNrBxBoardDaq(parSet.getParameter<unsigned
int>(
"AlternativeNrBxBoardDaq")),
79 m_alternativeNrBxBoardEvm(parSet.getParameter<unsigned
int>(
"AlternativeNrBxBoardEvm")),
80 m_psBstLengthBytes(parSet.getParameter<
int>(
"BstLengthBytes")),
81 m_algorithmTriggersUnprescaled(parSet.getParameter<
bool>(
"AlgorithmTriggersUnprescaled")),
82 m_algorithmTriggersUnmasked(parSet.getParameter<
bool>(
"AlgorithmTriggersUnmasked")),
83 m_technicalTriggersUnprescaled(parSet.getParameter<
bool>(
"TechnicalTriggersUnprescaled")),
84 m_technicalTriggersUnmasked(parSet.getParameter<
bool>(
"TechnicalTriggersUnmasked")),
85 m_technicalTriggersVetoUnmasked(parSet.getParameter<
bool>(
"TechnicalTriggersVetoUnmasked")),
86 m_verbosity(parSet.getUntrackedParameter<
int>(
"Verbosity", 0)),
98 LogDebug(
"L1GlobalTrigger") << std::endl;
103 <<
"\nInput tag for technical triggers: " << std::endl;
109 LogTrace(
"L1GlobalTrigger") <<
"\n " << (*it) << std::endl;
119 <<
"\nNumber of BXs corresponding to alternative 0: " <<
m_recordLength.at(0)
120 <<
"\nNumber of BXs corresponding to alternative 1: " <<
m_recordLength.at(1) <<
" \n"
137 edm::LogWarning(
"L1GlobalTrigger") <<
"\nWARNING: Number of bunch crossing to be emulated rounded to: "
148 edm::LogWarning(
"L1GlobalTrigger") <<
"\nWARNING: Number of bunch crossing required to be emulated ( "
150 <<
"\n Number of BXs corresponding to alternative 0: "
152 <<
"\n Number of BXs corresponding to alternative 1: "
153 <<
m_recordLength.at(1) <<
"\nEmulating " << requiredRecordLength <<
" BX!"
161 produces<L1GlobalTriggerReadoutRecord>();
165 produces<L1GlobalTriggerEvmReadoutRecord>();
169 produces<L1GlobalTriggerObjectMapRecord>();
323 if ((recordLength0 < 0) || (recordLength1 < 0)) {
334 <<
"[" << minBxInEvent <<
", " << maxBxInEvent <<
"] BX\n"
335 <<
"\nNumber of BX for alternative 0: " << recordLength0
336 <<
"\nNumber of BX for alternative 1: " << recordLength1
337 <<
"\nActive boards in L1 GT DAQ record (hex format) = " << std::hex
340 <<
"\nActive boards in L1 GT EVM record (hex format) = " << std::hex
349 typedef std::vector<L1GtBoard>::const_iterator CItBoardMaps;
443 int daqNrGtfeBoards = 0;
445 int daqNrFdlBoards = 0;
446 int daqNrPsbBoards = 0;
447 int daqNrGmtBoards = 0;
448 int daqNrTcsBoards = 0;
449 int daqNrTimBoards = 0;
452 bool receiveMu =
false;
453 bool receiveNoIsoEG =
false;
454 bool receiveIsoEG =
false;
455 bool receiveCenJet =
false;
456 bool receiveForJet =
false;
457 bool receiveTauJet =
false;
458 bool receiveETM =
false;
459 bool receiveETT =
false;
460 bool receiveHTT =
false;
461 bool receiveHTM =
false;
462 bool receiveJetCounts =
false;
463 bool receiveHfBitCounts =
false;
464 bool receiveHfRingEtSums =
false;
466 bool receiveExternal =
false;
468 bool receiveTechTr =
false;
470 for (CItBoardMaps itBoard = boardMaps.begin(); itBoard != boardMaps.end(); ++itBoard) {
471 int iPosition = itBoard->gtPositionDaqRecord();
473 int iActiveBit = itBoard->gtBitDaqActiveBoards();
474 bool activeBoard =
false;
476 if (iActiveBit >= 0) {
483 if ((iActiveBit < 0) || activeBoard) {
484 switch (itBoard->gtBoardType()) {
499 std::vector<L1GtPsbQuad> quadInPsb = itBoard->gtQuadInPsb();
500 for (std::vector<L1GtPsbQuad>::const_iterator itQuad = quadInPsb.begin(); itQuad != quadInPsb.end();
504 receiveTechTr =
true;
509 receiveNoIsoEG =
true;
519 receiveCenJet =
true;
524 receiveForJet =
true;
529 receiveTauJet =
true;
542 receiveJetCounts =
true;
557 receiveExternal =
true;
562 receiveHfBitCounts =
true;
563 receiveHfRingEtSums =
true;
607 std::unique_ptr<L1GlobalTriggerReadoutRecord> gtDaqReadoutRecord(
611 std::unique_ptr<L1GlobalTriggerEvmReadoutRecord> gtEvmReadoutRecord(
623 int bxCross =
iEvent.bunchCrossing();
624 uint16_t bxCrossHw = 0;
625 if ((bxCross & 0xFFF) == bxCross) {
626 bxCrossHw = static_cast<uint16_t>(bxCross);
630 LogDebug(
"L1GlobalTrigger") <<
"\nBunch cross number [hex] = " << std::hex << bxCross
631 <<
"\n larger than 12 bits. Set to 0! \n"
637 for (CItBoardMaps itBoard = boardMaps.begin(); itBoard != boardMaps.end(); ++itBoard) {
638 int iPosition = itBoard->gtPositionDaqRecord();
640 int iActiveBit = itBoard->gtBitDaqActiveBoards();
641 bool activeBoard =
false;
643 if (iActiveBit >= 0) {
650 if ((iActiveBit < 0) || activeBoard) {
651 switch (itBoard->gtBoardType()) {
655 gtfeWordValue.
setBoardId(itBoard->gtBoardId());
664 gtfeWordValue.
setBxNr(bxCrossHw);
679 gtDaqReadoutRecord->setGtfeWord(gtfeWordValue);
706 int evmNrFdlBoards = 0;
711 int bstLengthBytes = 0;
723 LogTrace(
"L1GlobalTrigger") <<
"\n Length of BST message (in bytes): " << bstLengthBytes <<
"\n" << std::endl;
726 for (CItBoardMaps itBoard = boardMaps.begin(); itBoard != boardMaps.end(); ++itBoard) {
727 int iPosition = itBoard->gtPositionEvmRecord();
729 int iActiveBit = itBoard->gtBitEvmActiveBoards();
730 bool activeBoard =
false;
732 if (iActiveBit >= 0) {
739 if ((iActiveBit < 0) || activeBoard) {
740 switch (itBoard->gtBoardType()) {
744 gtfeWordValue.
setBoardId(itBoard->gtBoardId());
753 gtfeWordValue.
setBxNr(bxCrossHw);
777 uint16_t bstSourceVal = 0xDDDD;
782 gtEvmReadoutRecord->setGtfeWord(gtfeWordValue);
794 tcsWordValue.
setBoardId(itBoard->gtBoardId());
797 tcsWordValue.
setBxNr(bxCrossHw);
799 uint16_t trigType = 0x5;
813 gtEvmReadoutRecord->setTcsWord(tcsWordValue);
835 int pfAlgoSetIndex = 0;
836 const std::vector<int> &prescaleFactorsAlgoTrig = (*m_prescaleFactorsAlgoTrig).at(pfAlgoSetIndex);
838 int pfTechSetIndex = 0;
839 const std::vector<int> &prescaleFactorsTechTrig = (*m_prescaleFactorsTechTrig).at(pfTechSetIndex);
844 for (
int iBxInEvent = minBxInEvent; iBxInEvent <= maxBxInEvent; ++iBxInEvent) {
870 receiveHfRingEtSums);
878 if (receiveExternal) {
890 gtDaqReadoutRecord.get());
911 gtObjectMapRecord.get(),
933 prescaleFactorsAlgoTrig,
934 prescaleFactorsTechTrig,
962 gtDaqReadoutRecord.get());
972 gtEvmReadoutRecord.get());
1000 <<
"\nrequested in configuration, but not found in the event.\n"
1004 gtDaqReadoutRecord->setMuCollectionRefProd(gmtRcHandle);
1009 std::ostringstream myCoutStream;
1010 gtDaqReadoutRecord->print(myCoutStream);
1011 LogTrace(
"L1GlobalTrigger") <<
"\n The following L1 GT DAQ readout record was produced:\n"
1012 << myCoutStream.str() <<
"\n"
1015 myCoutStream.str(
"");
1016 myCoutStream.clear();
1018 gtEvmReadoutRecord->print(myCoutStream);
1019 LogTrace(
"L1GlobalTrigger") <<
"\n The following L1 GT EVM readout record was produced:\n"
1020 << myCoutStream.str() <<
"\n"
1023 myCoutStream.str(
"");
1024 myCoutStream.clear();
1026 const std::vector<L1GlobalTriggerObjectMap> objMapVec = gtObjectMapRecord->gtObjectMap();
1028 for (std::vector<L1GlobalTriggerObjectMap>::const_iterator it = objMapVec.begin(); it != objMapVec.end(); ++it) {
1029 (*it).print(myCoutStream);
1032 LogDebug(
"L1GlobalTrigger") <<
"Test gtObjectMapRecord in L1GlobalTrigger \n\n"
1033 << myCoutStream.str() <<
"\n\n"
1036 myCoutStream.str(
"");
1037 myCoutStream.clear();
T const * product() const
L1GlobalTriggerFDL * m_gtFDL
unsigned int gtNumberL1Mu() const
get / set the number of L1 muons received by GT
unsigned int m_numberPhysTriggers
number of physics triggers
void produce(edm::Event &, const edm::EventSetup &) override
const unsigned int gtBstLengthBytes() const
get / set length of BST message (in bytes) for L1 GT EVM record
edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskAlgoTrigRcd > m_l1GtTmAlgoToken
L1GlobalTriggerPSB * m_gtPSB
const bool m_algorithmTriggersUnmasked
unsigned int gtNumberTechnicalTriggers() const
get / set the number of technical triggers
unsigned long long m_l1GtPfTechCacheID
const std::vector< int > m_recordLength
void setLuminositySegmentNr(const cms_uint16_t luminositySegmentNrValue)
unsigned int gtNumberL1TauJet() const
get / set the number of L1 tau jets received by GT
edm::ESGetToken< L1GtPrescaleFactors, L1GtPrescaleFactorsTechTrigRcd > m_l1GtPfTechToken
void setTotalTriggerNr(cms_uint32_t totalTriggerNrValue)
void fillPsbBlock(edm::Event &iEvent, const uint16_t &activeBoardsGtDaq, const int recordLength0, const int recordLength1, const unsigned int altNrBxBoardDaq, const std::vector< L1GtBoard > &boardMaps, const int iBxInEvent, L1GlobalTriggerReadoutRecord *gtDaqReadoutRecord)
fill the content of active PSB boards
std::vector< unsigned int > m_triggerMaskVetoAlgoTrig
unsigned int gtNumberL1ForJet() const
get / set the number of L1 forward jets received by GT
void setRecordLength(cms_uint16_t recordLengthValue)
unsigned long long m_l1GtStableParCacheID
const std::vector< std::vector< int > > & gtPrescaleFactors() const
get the prescale factors by reference
unsigned long long m_l1GtParCacheID
const int gtTotalBxInEvent() const
get / set the total Bx's in the event
void setRecordLength1(cms_uint16_t recordLengthValue)
unsigned long long m_l1GtTmVetoAlgoCacheID
L1GlobalTrigger(const edm::ParameterSet &)
unsigned long long m_l1GtTmVetoTechCacheID
uint16_t m_activeBoardsGtDaq
active boards in L1 GT DAQ record and in L1 GT EVM record
void init(const int nrL1Mu, const int numberPhysTriggers)
initialize the class (mainly reserve)
uint16_t m_activeBoardsGtEvm
std::vector< unsigned int > m_triggerMaskVetoTechTrig
const edm::InputTag m_muGmtInputTag
input tag for muon collection from GMT
Log< level::Warning, false > LogWarning
void fillDaqFdlBlock(const int iBxInEvent, const uint16_t &activeBoardsGtDaq, const int recordLength0, const int recordLength1, const unsigned int altNrBxBoardDaq, const std::vector< L1GtBoard > &boardMaps, L1GlobalTriggerReadoutRecord *gtDaqReadoutRecord)
fill the FDL block in the L1 GT DAQ record for iBxInEvent
unsigned long long m_l1GtBMCacheID
void setGpsTime(const cms_uint64_t)
void setOrbitNr(const cms_uint64_t orbitNrValue)
edm::ESGetToken< L1GtParameters, L1GtParametersRcd > m_l1GtParToken
const L1GtTriggerMask * m_l1GtTmAlgo
trigger masks & veto masks
void receiveTechnicalTriggers(edm::Event &iEvent, const std::vector< edm::InputTag > &technicalTriggersInputTags, const int iBxInEvent, const bool receiveTechTr, const int nrL1TechTr)
receive technical trigger
void run(edm::Event &iEvent, const edm::EventSetup &evSetup, const L1GlobalTriggerPSB *ptrGtPSB, const bool produceL1GtObjectMapRecord, const int iBxInEvent, L1GlobalTriggerObjectMapRecord *gtObjectMapRecord, const unsigned int numberPhysTriggers, const int nrL1Mu, const int nrL1NoIsoEG, const int nrL1IsoEG, const int nrL1CenJet, const int nrL1ForJet, const int nrL1TauJet, const int nrL1JetCounts, const int ifMuEtaNumberBits, const int ifCaloEtaNumberBits)
run the GTL
void setTriggerType(const cms_uint16_t triggerTypeValue)
edm::ESGetToken< L1GtPrescaleFactors, L1GtPrescaleFactorsAlgoTrigRcd > m_l1GtPfAlgoToken
const bool m_writePsbL1GtDaqRecord
logical flag to write the PSB content in the L1 GT DAQ record
const L1GtTriggerMask * m_l1GtTmTech
unsigned int gtNumberL1JetCounts() const
get / set the number of L1 jet counts received by GT
void fillEvmFdlBlock(const int iBxInEvent, const uint16_t &activeBoardsGtEvm, const int recordLength0, const int recordLength1, const unsigned int altNrBxBoardEvm, const std::vector< L1GtBoard > &boardMaps, L1GlobalTriggerEvmReadoutRecord *gtEvmReadoutRecord)
fill the FDL block in the L1 GT EVM record for iBxInEvent
#define DEFINE_FWK_MODULE(type)
const L1GtStableParameters * m_l1GtStablePar
cached stuff
unsigned int m_numberTechnicalTriggers
number of technical triggers
unsigned int gtIfCaloEtaNumberBits() const
get / set the number of bits for eta of calorimeter objects
void receiveGctObjectData(edm::Event &iEvent, const edm::InputTag &caloGctInputTag, const int iBxInEvent, const bool receiveNoIsoEG, const int nrL1NoIsoEG, const bool receiveIsoEG, const int nrL1IsoEG, const bool receiveCenJet, const int nrL1CenJet, const bool receiveForJet, const int nrL1ForJet, const bool receiveTauJet, const int nrL1TauJet, const bool receiveETM, const bool receiveETT, const bool receiveHTT, const bool receiveHTM, const bool receiveJetCounts, const bool receiveHfBitCounts, const bool receiveHfRingEtSums)
receive Global Calorimeter Trigger objects
const bool m_produceL1GtDaqRecord
logical flag to produce the L1 GT DAQ readout record
edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskVetoTechTrigRcd > m_l1GtTmVetoTechToken
const L1GtPrescaleFactors * m_l1GtPfTech
const edm::InputTag m_castorInputTag
input tag for CASTOR record
const int m_psBstLengthBytes
length of BST record (in bytes) from parameter set
void setActiveBoards(cms_uint16_t activeBoardsValue)
std::vector< unsigned int > m_triggerMaskTechTrig
edm::ESGetToken< L1GtStableParameters, L1GtStableParametersRcd > m_l1GtStableParToken
EventSetup Tokens.
const std::vector< std::vector< int > > * m_prescaleFactorsAlgoTrig
int m_ifCaloEtaNumberBits
void receiveGmtObjectData(edm::Event &, const edm::InputTag &, const int iBxInEvent, const bool receiveMu, const int nrL1Mu)
receive data from Global Muon Trigger
unsigned long long m_l1GtTmTechCacheID
L1GlobalTriggerGTL * m_gtGTL
const std::vector< unsigned int > & gtTriggerMask() const
get the trigger mask
void setVerbosity(const int verbosity)
const bool m_algorithmTriggersUnprescaled
const edm::InputTag m_caloGctInputTag
input tag for calorimeter collections from GCT
const L1GtTriggerMask * m_l1GtTmVetoTech
const L1GtTriggerMask * m_l1GtTmVetoAlgo
const bool m_isDebugEnabled
const L1GtParameters * m_l1GtPar
parameters
std::vector< unsigned int > m_triggerMaskAlgoTrig
unsigned long long m_l1GtPfAlgoCacheID
void setEventNr(const cms_uint32_t eventNrValue)
const unsigned int m_alternativeNrBxBoardEvm
edm::ESGetToken< L1GtBoardMaps, L1GtBoardMapsRcd > m_l1GtBMToken
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
const uint16_t gtDaqActiveBoards() const
get / set the active boards for L1 GT DAQ record
void setVerbosity(const int verbosity)
unsigned int gtNumberPhysTriggers() const
get / set the number of physics trigger algorithms
const int m_verbosity
verbosity level
unsigned int m_bstLengthBytes
length of BST record (in bytes) from event setup
unsigned int gtIfMuEtaNumberBits() const
get / set the number of bits for eta of muon objects
void setVerbosity(const int verbosity)
unsigned int gtNumberL1IsoEG() const
get / set the number of L1 isolated e/gamma objects received by GT
const std::vector< edm::InputTag > m_technicalTriggersInputTags
input tag for technical triggers
const unsigned int m_alternativeNrBxBoardDaq
const bool m_technicalTriggersUnprescaled
edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskTechTrigRcd > m_l1GtTmTechToken
void setAltNrBxBoard(cms_uint16_t altNrBxBoardValue)
~L1GlobalTrigger() override
unsigned int gtNumberL1CenJet() const
get / set the number of L1 central jets received by GT
void init(const int nrL1NoIsoEG, const int nrL1IsoEG, const int nrL1CenJet, const int nrL1ForJet, const int nrL1TauJet, const int numberTechnicalTriggers)
initialize the class (mainly reserve)
void setBstSource(const cms_uint16_t bstSourceVal)
const bool m_produceL1GtObjectMapRecord
logical flag to produce the L1 GT object map record
void setBxNr(cms_uint16_t bxNrValue)
const bool m_produceL1GtEvmRecord
logical flag to produce the L1 GT EVM readout record
unsigned int m_numberDaqPartitions
number of DAQ partitions
const std::vector< L1GtBoard > & gtBoardMaps() const
get / set / print the L1 GT board map
void setBoardId(cms_uint16_t boardIdValue)
set BoardId from a BoardId value
const std::vector< std::vector< int > > * m_prescaleFactorsTechTrig
const bool m_technicalTriggersVetoUnmasked
const bool m_readTechnicalTriggerRecords
logical flag to read the technical trigger records
void setBoardId(const cms_uint16_t boardIdValue)
set BoardId from a BoardId value
void setBxNr(const cms_uint16_t bxNrValue)
const uint16_t gtEvmActiveBoards() const
get / set the active boards for L1 GT EVM record
const bool m_technicalTriggersUnmasked
int m_totalBxInEvent
total number of Bx's in the event coming from EventSetup
const L1GtPrescaleFactors * m_l1GtPfAlgo
prescale factors
void run(edm::Event &iEvent, const std::vector< int > &prescaleFactorsAlgoTrig, const std::vector< int > &prescaleFactorsTechTrig, const std::vector< unsigned int > &triggerMaskAlgoTrig, const std::vector< unsigned int > &triggerMaskTechTrig, const std::vector< unsigned int > &triggerMaskVetoAlgoTrig, const std::vector< unsigned int > &triggerMaskVetoTechTrig, const std::vector< L1GtBoard > &boardMaps, const int totalBxInEvent, const int iBxInEvent, const unsigned int numberPhysTriggers, const unsigned int numberTechnicalTriggers, const unsigned int numberDaqPartitions, const L1GlobalTriggerGTL *ptrGTL, const L1GlobalTriggerPSB *ptrPSB, const int pfAlgoSetIndex, const int pfTechSetIndex, const bool algorithmTriggersUnprescaled, const bool algorithmTriggersUnmasked, const bool technicalTriggersUnprescaled, const bool technicalTriggersUnmasked, const bool technicalTriggersVetoUnmasked)
run the FDL
unsigned int gtNumberL1NoIsoEG() const
get / set the number of L1 e/gamma objects received by GT
const L1GtBoardMaps * m_l1GtBM
board maps - cache only the record
unsigned long long TimeValue_t
edm::ESGetToken< L1GtTriggerMask, L1GtTriggerMaskVetoAlgoTrigRcd > m_l1GtTmVetoAlgoToken
unsigned long long m_l1GtTmAlgoCacheID