From 83bfd1adbb4e8a6b4bddfb4768cc50cfd28a84d7 Mon Sep 17 00:00:00 2001 From: Sven Dildick Date: Mon, 25 Nov 2019 18:24:55 +0100 Subject: [PATCH] Update labels --- .../plugins/CSCTriggerPrimitivesProducer.cc | 8 ++++---- .../python/cscTriggerPrimitiveDigis_cfi.py | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/L1Trigger/CSCTriggerPrimitives/plugins/CSCTriggerPrimitivesProducer.cc b/L1Trigger/CSCTriggerPrimitives/plugins/CSCTriggerPrimitivesProducer.cc index 932984a255f99..831225194fb55 100644 --- a/L1Trigger/CSCTriggerPrimitives/plugins/CSCTriggerPrimitivesProducer.cc +++ b/L1Trigger/CSCTriggerPrimitives/plugins/CSCTriggerPrimitivesProducer.cc @@ -69,10 +69,10 @@ CSCTriggerPrimitivesProducer::CSCTriggerPrimitivesProducer(const edm::ParameterS produces(); // for experimental simulation studies if (writeOutAllCLCTs_) { - produces("ALL"); + produces("All"); } if (writeOutAllALCTs_) { - produces("ALL"); + produces("All"); } produces(); produces(); @@ -194,11 +194,11 @@ void CSCTriggerPrimitivesProducer::produce(edm::StreamID iID, edm::Event& ev, co // Put collections in event. ev.put(std::move(oc_alct)); if (writeOutAllALCTs_){ - ev.put(std::move(oc_alct_all), "ALL"); + ev.put(std::move(oc_alct_all), "All"); } ev.put(std::move(oc_clct)); if (writeOutAllCLCTs_){ - ev.put(std::move(oc_clct_all), "ALL"); + ev.put(std::move(oc_clct_all), "All"); } if (savePreTriggers_) { ev.put(std::move(oc_alctpretrigger)); diff --git a/L1Trigger/CSCTriggerPrimitives/python/cscTriggerPrimitiveDigis_cfi.py b/L1Trigger/CSCTriggerPrimitives/python/cscTriggerPrimitiveDigis_cfi.py index 486440fa05082..96577a6715b83 100644 --- a/L1Trigger/CSCTriggerPrimitives/python/cscTriggerPrimitiveDigis_cfi.py +++ b/L1Trigger/CSCTriggerPrimitives/python/cscTriggerPrimitiveDigis_cfi.py @@ -19,6 +19,8 @@ # Write out all CLCTs writeOutAllCLCTs = cms.bool(False), + + # Write out all ALCTs writeOutAllALCTs = cms.bool(False), # Write out pre-triggers