Les Houches
2023 Session
-
- Use of wiki pages and slack. Wifi access/set-up.
- Important info about bus, lodging, facilities.
- Bulletins.
Wikis of Previous sessions
Les Houches Themes
(Lyrics and Music)
(Lyrics and Music)
This is an old revision of the document!
Here we will work on a combined proposal using the other two by combining their strengths and eliminating their weaknesses. We first define the rules for each type of block and the structure of the file in total. We then follow with an explicit proposal that should correspond to some real-life analyses from ATLAS and CMS.
The idea is to write a plain text file that can be read easily into xml if needed (and hence universally readable). The name of the block becomes the xml tag. Anything that follows is turned into attributes. e.g. “name ATLAS” inside the block becomes <experiment name=“ATLAS”>. Anything inside the block starting with “#” is added as a comment, i.e. the block
info analysis # Details about experiment id ATLAS-2014-XXX publication JHEP11(2014)118 sqrtS 8.0 lumi 20.0
converts to
<info name="analysis" id="ATLAS-2014-XXX" publication="JHEP11(2014)118" sqrtS="8.0" lumi="20.0" description="Details about analysis">
There are five types of pre-defined blocks:
For presenting results, we need two more blocks, e.g.
For any block, a link to code or external documentation can be provided. We can also include a MCsamples block to document the programs used to generate signal and background samples.
…
info analysis # Details about experiment id SUSY-2013-15 publication JHEP11(2014)118 sqrtS 8.0 lumi 20.0 arXiv 1407.0583 hepdata https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2013-15/
info units ### Details about units for dimensionful quantities energy GeV length mm xsec pb # If using function repository, need to clarify if phi is between 0-2pi or -pi to pi.
function function_name arg1 type-of-arg1 arg2 type-of-arg2 return type-of-returnvalue code link-to-actual-code doc link-to-documentation
Rules:
Example:
function isolation ### Sums up activity in the vicinity of a given candidate arg1 detectorobj # a single electron, muon or photon arg2 string # "calo", "tracks", "eflow" arg3 float # dR cone to be probed arg4 ptmin # minpt of objects to be counted arg5 bool # divide by candidate's pt? return float # sum of pT of the respective surrounding objects code http://google.de doc http://google.de function overlap ### Checks if the candidate overlaps with any object of the list provided arg1 detectorobj # to be tested candidate arg2 detectorobj-list # to be tested potential neighbours arg3 float # dR cone to be probed return bool # true if any of the neighbours is closer than dR to the candidate code http://overlap.de doc http://overlap.de function hasMediumTag ### Checks if the candidate overlaps with any object of the list provided arg1 detectorobj # electron return bool # true if it is tagged as medium code http://electrons.de/medium code http://electrons.de/medium
Rules:
Example:
detectorobj muon_l ### Loose muons take external select isolation(muon_l.?, 'tracks', 0.4, 0.5)<0.1 code http://muons.mu doc http://checkmate.muons.mu detectorobj elec_l ### loose electrons take external select isolation(elec_l.?, 'tracks', 0.4, 0.5)<0.1 reject overlap(elec_l.?, muon_l, 0.4) code http://elecs.el doc http://checkmate.elecs.el detectorobj elec_m ### medium electrons take elec_l select hasMediumTag(elec_l.?) code http://elecs.el/medium doc http://checkmate.elecs.el/medium detectorobj lep ### signal leptons # lep contains medium electrons and loose muons take elec_m take muon_l detectorobj jet ### clustered jets from the calorimeter cells take external algorithm anti-kt R 0.4 ptmin 20 etamax 2.5 code http://jets.jet doc http://checkmate.jets.de
Rules:
Example:
cut preselect ### Pre-selection cuts eff 0.95 trigger e_trigger.OR.mu_trigger.OR.met_trigger select lep.1.pt>25 reject lep.size>1 select jet.size>2 select met>100
info MCsamples ### All information concerning signal and background generation goes here signal Sherpa1.4.1 stop-pair background POWHEG ttbar mtop = 172.5 NLO table maasinfo doc http://singalgenerator.generate doc _benchmark_SLHA_ doc _MG5_model_files_
table massinfo cut pdgid mass tN_diag 1000022 1 1000006 700
Link Issues:
info analysis # Details about experiment id SUSY-2013-15 publication JHEP11(2014)118 sqrtS 8.0 lumi 20.0 arXiv 1407.0583 hepdata https://atlas.web.cern.ch/Atlas/GROUPS/PHYSICS/PAPERS/SUSY-2013-15/ info units energy GeV length mm xsec pb
detectorobj jets ### clustered jets from the calorimeter cells take external algorithm anti-kt R 0.4 ptmin 20 etamax 2.5 code http://jets.jet doc http://checkmate.jets.de
detectorobj b_jets
### jets with btag take jets select isBJet(b_jets.?, 70)
detectorobj nob_jets
### jets without btag take jets reject isBJet(b_jets.?, 70)
detectorobj tau_jets_l
### jets with loose tau tag take jets reject isTauJet(tau_jets_l.?, "loose")
detectorobj tau_jets_t
### jets with tight tau tag take tau_jets_l reject isTauJet(tau_jets_t.?, "tight")
detectorobj elecs_rec
### reconstructed electrons take external
detectorobj elecs_l
### loosely reconstructed electrons take elecs_rec select elecs_l.?.pt>7 select elecs_l.?.eta>-2.47 select elecs_l.?.eta<2.47
detectorobj elecs_m
### medium electrons take elecs_l select isIdentifiedEl(elecs_m.?, "medium") select elecs_m.?.pt>10 code http://elecs.el/medium doc http://checkmate.elecs.el/medium
detectorobj muons_rec
### reconstructed muons take external
detectorobj muons_l
take muons_rec select isIdentifiedMu(muons_l.?, "loose") select muons_l.?.pt>6 select muons_l.?.eta>-2.4 select muons_l.?.eta<2.4
detectorobj muons_m
take muons_l select isIdentifiedMu(muons_m.?, "medium") select muons_m.?.pt>10
detectorobj nob_jets_iso
### isolated jets take nob_jets reject overlaps(nob_jets.?, elecs_m, 0.2)
detectorobj elecs_t_iso
### isolated electrons take elecs_m reject overlaps(elecs_m.?, nob_jets, 0.4) reject overlaps(elecs_m.?, b_jets, 0.2) reject overlaps(elecs_m.?, tau_jets_t, 0.2) select elecs_t_iso.?.pt>25 select isIdentifiedEl(elecs_t_iso.?, "tight") select isIsolated(elecs_t_iso.?, "tracks", 0.2, 0.5, true, 0.1)
detectorobj muons_t_iso
### isolated muons take muons_m reject overlaps(muons_m.?, jets, 0.4) select isIsolated(muons_m.?, "tracks", 0.2, 0.5, false, 1.8)
detectorobj leptons_l
### loose leptons take muons_l take elecs_l select leptons_l.?.pt>10
detectorobj leptons
### signal leptons take elecs_t_iso take muons_m_iso select leptons.?.pt>25
detectorobj etmiss
### missing et take external
</code>
cut common select leptons.n=1 select leptons_l.n=1 select jets.n>=4 select etmiss.pt>100 cut dPhi12 select etmiss.dphi(jet.1)>0.8 select etmiss.dphi(jet.2)>0.8 cut leadjets_60to25 jets.1.pt>60 jets.2.pt>60 jets.3.pt>40 jets.4.pt>25 cut leadjets_80to25 jets.1.pt>80 jets.2.pt>60 jets.3.pt>40 jets.4.pt>25 cut leadjets_100to25 jets.1.pt>100 jets.2.pt>80 jets.3.pt>40 jets.4.pt>25 cut leading_bjet select isBJet(jets.1, 70)||isBJet(jets.2, 70)||isBJet(jets.3, 70)||isBJet(jets.4, 70) cut tN_diag select common select leadjets_60to25 select leading_bjet select mT(leptons.1,etmiss)>100 select mHadTop(?,?)>130 select mHadTop(?,?)<205 select tau_jets_t.n=0 select b_jets.1.dR<2.5 ???? select etmiss.pt/HT(jets.1,jets.2,jets.3,jets.4)>5 select dPhi12 CUT tN_med select common select leadjets_80to25 select leading_bjet select etmiss.pt>200 select mT>140 select amT2>170 select mHadTop>130 select mHadTop<195 select HTMissSig>12.5 select dPhi12 CUT tN_high select common select leadjets_80to25 select leading_bjet select etmiss.pt>320 select mT>200 select amT2>170 select mT2tau>120 select mHadTop>130 select mHadTop<250 select dRbl<3.0 select HtMissSig>12.5