Changes between Version 22 and Version 23 of WorkBook/TutorialBologna
- Timestamp:
- Jun 10, 2016, 1:09:46 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/TutorialBologna
v22 v23 411 411 Store these variables in the Track objects by editing the !ProcessTracks method in modules/!TreeWriter.cc. Compile. 412 412 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 ######################################## 413 7) Now first call the Timing module in the execution path the delphes_card_CMS_PileUp card: 414 {{{ 415 set 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 436 Then configure the Timing module: 437 438 {{{ 419 439 420 440 module Timing Timing { … … 426 446 } 427 447 428 }}} 448 Then store the the Track branch in the root output tree (replace the existing TreeWriter): 449 450 {{{ 451 module 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 429 458 430 459 8) Set the average pile-up to 200 in the card in the !PileUpMerger module.