Skip to content

Commit

Permalink
Update labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Dildick committed Nov 25, 2019
1 parent b7a9488 commit 83bfd1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ CSCTriggerPrimitivesProducer::CSCTriggerPrimitivesProducer(const edm::ParameterS
produces<CSCCLCTDigiCollection>();
// for experimental simulation studies
if (writeOutAllCLCTs_) {
produces<CSCCLCTDigiCollection>("ALL");
produces<CSCCLCTDigiCollection>("All");
}
if (writeOutAllALCTs_) {
produces<CSCALCTDigiCollection>("ALL");
produces<CSCALCTDigiCollection>("All");
}
produces<CSCCLCTPreTriggerDigiCollection>();
produces<CSCCLCTPreTriggerCollection>();
Expand Down Expand Up @@ -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));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

# Write out all CLCTs
writeOutAllCLCTs = cms.bool(False),

# Write out all ALCTs
writeOutAllALCTs = cms.bool(False),

# Write out pre-triggers
Expand Down

0 comments on commit 83bfd1a

Please sign in to comment.