Fork me on GitHub

Changes between Version 48 and Version 49 of WorkBook/PileUp


Ignore:
Timestamp:
Dec 18, 2014, 1:46:55 AM (10 years ago)
Author:
Pavel Demin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/PileUp

    v48 v49  
    2323
    2424 {{{ZVertexSpread}}}:: Pile-up and hard scattering events are randomly distributed in time and z position according to some parametrization specified by the user (in meters and second units). It can be either continuous or binned:
    25 
    26 {{{
     25{{{#!tcl
    2726set VertexDistributionFormula {exp(-(t^2/(2*(0.05/2.99792458E8*exp(-(z^2/(2*(0.05)^2))))^2)))}
    2827}}}
    29 
    30 {{{
     28{{{#!tcl
    3129set VertexDistributionFormula {(abs(t) <= 1.0e-09) * (abs(z) <= 0.15) * (1.00) +
    3230                               (abs(t) >  1.0e-09) * (abs(z) <= 0.15) * (0.00) +
     
    4341By default the time information is now stored in each output collection object. However, in order to account for an actual timing measurement, the module {{{TimeSmearing}}} should be called. This module simply smears (by a Gaussian) the final time according to some resolution specified by the user, controlled by the parameter
    4442
    45 {{{
     43{{{#!tcl
    4644set TimeResolution 1.0e-10
    4745}}}
     
    5351First, the user must specify whether to calculate the area while clustering the jets within the {{{FastJetFinder}}} module. Several methods for the area calculation can be specified (active area, passive area, Voronoi) via the parameter {{{AreaAlgorithm}}}. By default this parameter is set to 0 (no area calculation):
    5452
    55 {{{
     53{{{#!tcl
    5654# area algorithm: 0 Do not compute area, 1 Active area explicit ghosts, 2 One ghost passive area, 3 Passive area, 4 Voronoi, 5 Active area
    5755set AreaAlgorithm 5
     
    6058Then the median density (in GeV/A) of pile-up contamination (rho) per event can the be computed within the {{{FastJetFinder}}} module:
    6159
    62 {{{
     60{{{#!tcl
    6361set ComputeRho true
    6462set RhoOutputArray rho
     
    6967It is now possible to specify several eta ranges for the computation of the pile-up density, leading to a more accurate estimate. For instance:
    7068
    71 {{{
     69{{{#!tcl
    7270add RhoEtaRange 0.0 2.5
    7371add RhoEtaRange 2.5 5.0
     
    7977This can be done by calling the module !FastJetGridMedianEstimator. You can specify different regions as before, and, in addition,
    8078the grid-spacing in eta, phi:
    81 
    82 
    83 {{{
     79{{{#!tcl
    8480module FastJetGridMedianEstimator Rho {
    8581 
     
    105101 {{{}}}:: For |z| < ZVertexResolution the hard interaction vertex cannot be distinguished from pile-up vertices.
    106102 {{{}}}:: For |z| > ZVertexResolution the hard interaction vertex can be distinguished from pile-up vertices.
    107 
    108 
    109 {{{
     103{{{#!tcl
    110104module TrackPileUpSubtractor TrackPileUpSubtractor {
    111105
     
    124118* Jet pile-up subtraction is done via the {{{JetPileUpSubtractor}}} module that takes as input the jet collection and rho:
    125119
    126 {{{
     120{{{#!tcl
    127121set JetInputArray FastJetFinder/jets
    128122set RhoInputArray rho
     
    131125* Isolation subtraction is done inside the {{{Isolation}}} module itself just by adding the line in the Delphes card:
    132126
    133 {{{
     127{{{#!tcl
    134128set RhoInputArray rho
    135129}}}
     
    140134The ID variables can be computed either using the jet constituents:
    141135
    142 {{{
     136{{{#!tcl
    143137set UseConstituents 1
    144138}}}
     
    146140or using all the neutral and charged particle-flow objects in a cone around the jet axis
    147141
    148 {{{
     142{{{#!tcl
    149143set UseConstituents 0
    150144}}}
     
    164158Convert your minimum bias sample into binary format:
    165159
    166 {{{
     160{{{#!sh
    167161./stdhep2pileup MinBias.pileup MinBias.hep
    168162./hepmc2pileup MinBias.pileup MinBias.hepmc
     
    174168Run Delphes on your sample X with pile-up:
    175169
    176 {{{
     170{{{#!sh
    177171./DelphesSTDHEP cards/delphes_card_CMS_PileUp.tcl X_PileUp.root X.hep
    178172./DelphesSTDHEP cards/delphes_card_ATLAS_PileUp.tcl X_PileUp.root X.hep