Fork me on GitHub

Changes between Version 7 and Version 8 of WorkBook/Tutorials/Mc4Bsm


Ignore:
Timestamp:
Jul 20, 2016, 6:25:16 AM (8 years ago)
Author:
Michele Selvaggi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/Tutorials/Mc4Bsm

    v7 v8  
    1171171. Open the card cards/delphes_card_CMS.tcl with your favorite editor and try to make sense of it. 2.
    118118
    119 3. The present version of the card produces a Jet collection without computing and storing in the output substructure variable. Add a new collection of fat-jets called FatJet in the card. In order to do this you will need to first call the process in the ExecutionPath:
    120 {{{
    121 set ExecutionPath {
    122  ...
    123  FastJetFinder
    124  FatJetFinder
    125  ... 
    126 }
    127 }}}
    128 4. Then configure the FastJetFinder module by switching on the options for substructure:
     1192. Then configure the FastJetFinder module by switching on the options for substructure:
     120
    129121{{{
    130122############
    131 # Fat Jet finder
     123# Fast Jet finder
    132124############
    133125
    134 module FastJetFinder FatJetFinder {
     126module FastJetFinder FastJetFinder {
    135127  set InputArray EFlowMerger/eflow
    136128
     
    162154}
    163155}}}
    164 5. Finally, write the fat-jet collection in your output tree by adding it to the !TreeWriter:
    165156
    166 {{{
    167 module TreeWriter TreeWriter {
    168   ...
    169   add Branch UniqueObjectFinder/jets Jet Jet
    170   add Branch FatJetFinder/jets FatJet Jet
    171   ...
    172 }
    173 }}}
    174 
    175 6. Now run Delphes with the newly modified card with jet substructure, on both the dijet and Z' samples:
     1573. Now run Delphes with the newly modified card with jet substructure, on both the dijet and Z' samples:
    176158{{{
    177159./DelphesSTDHEP cards/delphes_card_CMS.tcl out_pp_zp_ww_js.root pp_zp_ww.hep
     
    179161}}}
    180162
    181 7. Open the files with ROOT TBrowser as in the Getting Started section, and make sure that the new jet substructure variables are properly stored. 
     1634. Open the files with ROOT TBrowser as in the Getting Started section, and make sure that the new jet substructure variables are properly stored. 
     164
     1655. Now run this simple event selection macro. It will plot two crucial jet observables that can help in discriminating between a w-jet and a light jet: the jet mass, and the N-subjettiness ratio tau2/tau1.