Changes between Version 7 and Version 8 of WorkBook/Tutorials/Mc4Bsm
- Timestamp:
- Jul 20, 2016, 6:25:16 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/Tutorials/Mc4Bsm
v7 v8 117 117 1. Open the card cards/delphes_card_CMS.tcl with your favorite editor and try to make sense of it. 2. 118 118 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: 119 2. Then configure the FastJetFinder module by switching on the options for substructure: 120 129 121 {{{ 130 122 ############ 131 # Fa t Jet finder123 # Fast Jet finder 132 124 ############ 133 125 134 module FastJetFinder Fa tJetFinder {126 module FastJetFinder FastJetFinder { 135 127 set InputArray EFlowMerger/eflow 136 128 … … 162 154 } 163 155 }}} 164 5. Finally, write the fat-jet collection in your output tree by adding it to the !TreeWriter:165 156 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: 157 3. Now run Delphes with the newly modified card with jet substructure, on both the dijet and Z' samples: 176 158 {{{ 177 159 ./DelphesSTDHEP cards/delphes_card_CMS.tcl out_pp_zp_ww_js.root pp_zp_ww.hep … … 179 161 }}} 180 162 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. 163 4. 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 165 5. 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.