Skip to content

consuegs/H2aa_2mu2tau_PhDthesis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Analyses/H2aa_2mu2tau_PhDthesis

Analysis Framework of the DESY CMS Higgs -> tautau group for H->aa->2mu2tau analysis

Search for light bosons in the final state with muons and tau leptons with CMS Run II data

See also the code documentation Doxygen page (in construction 🚧)

This repository contains only specific code to be used for the analysis

Installation

The Repository can be checked out via:

git clone https://github.com/consuegs/H2aa_2mu2tau_PhDthesis.git

Scale factors and efficiencies can be obtained from Desy Tau Analyses repository

For instructions on how to synchronize your area with GitHub for NTuple production, please refer to Desy Tau Analyses main twiki

Analysis note

This analysis is documented in the CMS Analysis note AN-2018/081 (CMS internal access) and the PhD Thesis (publicly available), which can be accessed in the following locations:

Desy publication database:

PUBDB-2020-04343

Bibliotek Uni Hamburg:

https://ediss.sub.uni-hamburg.de/handle/ediss/8690

iCMS:

http://cms.cern.ch/iCMS/jsp/iCMS.jsp?mode=single&part=publications

CDS:

CERN-THESIS-2020-181

Inspire:

https://inspirehep.net/literature/1830713

Main analysis macro

The main analysis macro (analysis_macro.cpp) is integrated to the Desy Tau Analyses framework and should be compiled from ${CMSSW_BASE}/src/DesyTauAnlalysis/NtupleMaker/bin/.

The macro performs an offline selection of a pair of muons and a pair of tracks after the online selection of events with isolated single muon triggers. A configuration file is used as input.

Configuration files are available separately for data, background MC, and signal MC samples for the 2016, 2017, and 2018 periods:

The configuration .conf file passes general information to initialise the main function:

int main(int argc, char *argv[])
{
	// analysis code
}   

The names of the config parameters were created to be self-explanatory.

In data the year and the json file with the certified lumisections must be specified, e.g.

...
IsData = true
year = 2016
ApplyGoodRunSelection = true
jsonFile = Cert_271036-284044_13TeV_ReReco_07Aug2017_Collisions16_JSON.json
...

Event loop

The event loop starts like this:

for (int iCand = 0; iCand < numberOfCandidates; iCand++)
{
	tree_->GetEntry(iCand);
	events++;
	// apply selection criteria
}

where the events are read from the ntuple files. The predefined selection cuts summarized in the configuration file are read and applied to the event within the event loop. Generator event weights in MC and JSON certified lumisection selections in data are also considered.

Veto on events with at leat one b-tagged jet

A line in the configuration file defines the working point to be used for the b-tagging:

btagCut = 0.6321

A veto on events with at least one b-tagged jet is applied (the deep flavour algorithm with the medium working point is used).

Muons and tracks

Muon and tracks have its own set of cuts defined in the configuration file:

ptGoodMuonCut = 3
ptIsoMuonCut = 25
etaMuonCut = 2.4
dxyMuonCut = 0.05
dzMuonCut = 0.1

btagCut = 0.6321

dRMuonsCut = 1.5
ptSumDiMuCut = 45
ptSumDiTrkCut = 10
massDiMuCut = 3.4
dxyDiMuCut = 0.01
dzDiMuCut = 0.03

ptTrkLooseCut = 1.5
ptTrkCut = 2.0
etaTrkCut = 2.4

dxyTrkLooseCut = 1.0
dxyTrkCut = 0.02
dzTrkLooseCut = 1.0
dzTrkCut = 0.04

The analysis macro can be executed by issuing the command:

analysis_macro analysisMacro.conf FileListName

NAF Submission

Bash scripts to submit to the NAF condor queue are available:

HTC_qsub_all.sh - all jobs

HTC_qsub_data.sh - data only jobs

HTC_qsub_bkgd.sh - background MC only jobs

HTC_qsub_susy.sh - signal only jobs

./HTC_qsub_all.sh

After the jobs are submitted directories called FileListName_files are created. In each of these directories the following set of files are created:

  • FileListName_$JobNumber - file containing paths to ntuples stored at Tier-2 DESY
  • FileListName_$JobNumber.root - the output root file which contains histograms and a set of trees corresponding to the signal region (SR) and Control regions (CRs) filled with the information of relevant variables used for the MVA discrimination
  • FileListName_$JobNumber.error - a file that contains information on whether the executable ran with no fatal errors
  • FileListName_$JobNumber.out - a file that contains information on the number of processed events and warnings
  • FileListName_$JobNumber.log - a file that contains information on CPU, disks, and memory use by the corresponding job
  • FileListName_$JobNumber.sh - SCRAM architecture and CMSSW environment for the job
  • FileListName_$JobNumber.submit - HTCondor submit configuration file.

If the job finished with error it can be resubmited by issuing the command ./resubmit.sh

Once the directory FileListName_files is created and all the jobs finished correctly, one can proceed to merge the output root files by issuing the command:

./hadd_all.sh - merge all jobs
./hadd_data.sh - merge data only jobs 
./hadd_bkgd.sh - merge background MC only jobs 
./hadd_susy.sh - merge signal only jobs 

Detailed Description

$year directory:

${your_directory}/H2aa_2mu2tau_PhDthesis/Run$year/

Filelists:

${your_directory}/H2aa_2mu2tau_PhDthesis/Run${year}/FileListMaker${year}.sh

Merge step to leave only three analysis categories ($category = lep_lep, lep_had, had_had) out of the initial 9 categories (e.g ele_ele, ele_mu, mu_ele, mu_mu for lep_lep), defined in analysis_macro.cpp

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/MVA_BDT/

Merge Trees:

MergeTrees.C

MergeAll()

Interpolation procedure

ForInterpolation.C:

  • For each generated mass point there are 4 discriminating variables assumed to be uncorrelated. An analytic function is associated to each of the 4 distributions and a MLF is performed to determine the optimal parameters

  • The procedure is repeated for each of the generated mass points per category

  • The vales of the parameters of the fit are stored as a function of the generated mass points

GetFittingPar() Parameters_ForInterpolation.root

  • An interpolation procedure is used to determine the value of each parameter for a step of 0.2 GeV and, with this, the corresponding 4-dimensional pdfs are generated

Wspacewrite() Workspace_Interpolation.root

All signal samples are generated with toys and the training (trainBDT_$category.py) is performed independently for each mass point and category

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/MVA_BDT/

set environment of CMSSW_8_1_0

BDT training

Train the BDT executing file:

TrainAll.sh

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/Inputs/

  • Classification of data is performed with the weight files produced in the training. The output of this step are root files called SUSY*_BDTOutput_M-.root and SingleMuon_BDTOutput_M-*.root containing the BDT output histograms

  • Interpolation of signal acceptance with 0.2 GeV step

  • Creation of all the datacards for limit computation using the files above as input

All the steps mentioned above are performed automatically with

CreateInputs.C RunAllInputs()

Option of submitting this time consuming step to condor with:

SubmitCreateInputs.sh

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/Inputs/DataCards/

Run combine tool locally:

run_combine.sh

or submit to condor

SubmitRunCombine.sh

Fit diagnostics:

Fitting.sh

Main plotting macros

Final discriminant (BDT output):

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/Inputs/Final_Discriminant/

PlotBDTDiscriminant.C

PlotAll()

Validation of Background Model:

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/Inputs/Bkgd_Validation/

BkgdValidation.C

Validation of Signal Model:

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/Inputs/Signal_Validation/

SignalValidation.C

GetFittingParVal() Parameters_ForValidation.root

Validation() Validation/

Limits:

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/Inputs/DataCards/

PlotLimits.C

Run 2 combination directory

${your_directory}/H2aa_2mu2tau_PhDthesis/Run2Combination/

Script to copy the datacards from 2016, 2017, and 2018 folders:

CopyAll.sh

Run combine tool:

run_combine.sh

Limits:

PlotLimits.C

Computation of Trk Iso SF

H->tau tau meeting (16.12.2019)-Trk isolation SF

${your_directory}/H2aa_2mu2tau_PhDthesis/${year}/TrkIso_SF_ZTT/

Interpretation of results in the context of the 2HDM+S and Dark Photon models

${your_directory}/H2aa_2mu2tau_PhDthesis/Interpretation/

Description of the benchmark models and the macros can be found in the following dedicated twiki page: HaaInterpretations

Brief workflow:

${your_directory}/H2aa_2mu2tau_PhDthesis/Interpretation/Exclusion_Limits_2mu2tau_2HDM_1S/

  • First create ntuple out of .dat file provided by the theoretists, which contains: type of the 2HDM, mass of the pseudoscalar a in GeV, , and

Entuplizing.C

  • Plot the limits on as a function of the mass of the pseudoscalar for each type of 2HDM+1S model (for an specific value of tan)

PlotExclusion.C

  • Plot the limits on as a function of the mass of the pseudoscalar for each type of 2HDM+1S model as a function of tan

PlotExclusion3D.C

${your_directory}/H2aa_2mu2tau_PhDthesis/Interpretation/Exclusion_Limits_2mu2tau_DarkPhoton/

  • Plot the limits on as a function of the mass of the pseudoscalar for Dark Photon model

PlotExclusion.C

If further clarifications are needed please contact: sandra.consuegra.rodriguez@desy.de, sandra.consuegra.rodriguez@cern.ch

Instructions last updated: 08.04.2021

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published