Fork me on GitHub

Changes between Version 22 and Version 23 of WorkBook/TutorialBologna


Ignore:
Timestamp:
Jun 10, 2016, 1:09:46 PM (8 years ago)
Author:
Michele Selvaggi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/TutorialBologna

    v22 v23  
    411411Store these variables in the Track objects by editing the !ProcessTracks method in modules/!TreeWriter.cc. Compile.
    412412
    413 7)  Finally, call the Timing module in the delphes_card_CMS_PileUp in the detector and configure it.
    414 
    415 {{{
    416 ########################################
    417 #   Time Smearing
    418 ########################################
     4137) Now first call the Timing module in the execution path the delphes_card_CMS_PileUp card:
     414{{{
     415set ExecutionPath {
     416
     417  PileUpMerger
     418  ParticlePropagator
     419
     420  ChargedHadronTrackingEfficiency
     421  ElectronTrackingEfficiency
     422  MuonTrackingEfficiency
     423
     424  ChargedHadronMomentumSmearing
     425  ElectronMomentumSmearing
     426  MuonMomentumSmearing
     427
     428  TrackMerger
     429  Timing
     430
     431  TreeWriter
     432}
     433
     434}}}
     435
     436Then configure the Timing module:
     437
     438{{{
    419439
    420440module Timing Timing {
     
    426446}
    427447
    428 }}}
     448Then store the the Track branch in the root output tree (replace the existing TreeWriter):
     449
     450{{{
     451module TreeWriter TreeWriter {
     452# add Branch InputArray BranchName BranchClass
     453  add Branch Timing/tracks Track Track
     454  add Branch PileUpMerger/vertices Vertex Vertex
     455}
     456}}}
     457
    429458
    4304598) Set the average pile-up to 200 in the card in the !PileUpMerger module.