Skip to content

Commit

Permalink
Merge pull request #424 from mariadalfonso/sampleMove
Browse files Browse the repository at this point in the history
Sample move
  • Loading branch information
mariadalfonso committed Jul 4, 2015
2 parents ac0bec3 + bc4a290 commit 1fe3ac2
Show file tree
Hide file tree
Showing 32 changed files with 60 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#####COMPONENT CREATOR

from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()

## ==== RelVals =====
Expand Down Expand Up @@ -41,7 +41,7 @@
]

### V+jets inclusive (from https://twiki.cern.ch/twiki/bin/viewauth/CMS/StandardModelCrossSectionsat13TeV)
WJetsToLNu = kreator.makeMCComponent("WJetsToLNu","/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8/RunIISpring15DR74-Asympt25ns_MCRUN2_74_V9-v1/MINIAODSIM", "CMS", ".*root", 20508.9)
WJetsToLNu = kreator.makeMCComponent("WJetsToLNu","/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8/RunIISpring15DR74-Asympt25ns_MCRUN2_74_V9-v1/MINIAODSIM", "CMS", ".*root", 3* 20508.9)
DYJetsToLL_M50 = kreator.makeMCComponent("DYJetsToLL_M50", "/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8/RunIISpring15DR74-Asympt25ns_MCRUN2_74_V9-v3/MINIAODSIM", "CMS", ".*root", 2008.*3)
DYJetsToLL_M50_PUflat1050 = kreator.makeMCComponent("DYJetsToLL_M50_PUflat1050", "/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8/RunIISpring15DR74-AsymptFlat10to50bx25Raw_MCRUN2_74_V9-v1/MINIAODSIM", "CMS", ".*root", 2008.*3)
## From McM
Expand All @@ -61,6 +61,14 @@
WJetsToLNu_HT600toInf,
]

### GJets
GJets_HT400to600 = kreator.makeMCComponent("GJets_HT400to600", "/GJets_HT-400To600_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/RunIISpring15DR74-Asympt25ns_MCRUN2_74_V9-v1/MINIAODSIM", "CMS", ".*root",62.05)
GJets_HT600toInf = kreator.makeMCComponent("GJets_HT600toInf", "/GJets_HT-600ToInf_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/RunIISpring15DR74-Asympt25ns_MCRUN2_74_V9-v1/MINIAODSIM", "CMS", ".*root",20.87)
GJetsHT = [
GJets_HT400to600,
GJets_HT600toInf,
]

### QCD
QCD_Pt80to120 = kreator.makeMCComponent("QCD_Pt80to120","/QCD_Pt_80to120_TuneCUETP8M1_13TeV_pythia8/RunIISpring15DR74-Asympt25ns_MCRUN2_74_V9-v1/MINIAODSIM", "CMS", ".*root", 2762530)
QCD_Pt120to170 = kreator.makeMCComponent("QCD_Pt120to170","/QCD_Pt_120to170_TuneCUETP8M1_13TeV_pythia8/RunIISpring15DR74-Asympt25ns_MCRUN2_74_V9-v1/MINIAODSIM", "CMS", ".*root", 471100)
Expand Down Expand Up @@ -117,7 +125,7 @@
### V+jets inclusive
DYJetsToLL_M50_50ns = kreator.makeMCComponent("DYJetsToLL_M50_50ns","/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8/RunIISpring15DR74-Asympt50ns_MCRUN2_74_V9A-v2/MINIAODSIM", "CMS", ".*root", 2008.*3)

WJetsToLNu_50ns = kreator.makeMCComponent("WJetsToLNu_50ns","/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8/RunIISpring15DR74-Asympt50ns_MCRUN2_74_V9A-v1/MINIAODSIM", "CMS", ".*root", 20508.9)
WJetsToLNu_50ns = kreator.makeMCComponent("WJetsToLNu_50ns","/WJetsToLNu_TuneCUETP8M1_13TeV-amcatnloFXFX-pythia8/RunIISpring15DR74-Asympt50ns_MCRUN2_74_V9A-v1/MINIAODSIM", "CMS", ".*root", 20508.9*3)

### QCD
QCD_Pt80to120_50ns = kreator.makeMCComponent("QCD_Pt80to120_50ns","/QCD_Pt_80to120_TuneCUETP8M1_13TeV_pythia8/RunIISpring15DR74-Asympt50ns_MCRUN2_74_V9A-v1/MINIAODSIM", "CMS", ".*root", 2762530)
Expand Down Expand Up @@ -166,14 +174,16 @@

### ----------------------------- summary ----------------------------------------

mcSamples_Asymptotic25ns = TTs + SingleTop + VJets + WJetsToLNuHT + QCDPt + DiBosons + Higgs
mcSamples_Asymptotic25ns = TTs + SingleTop + VJets + WJetsToLNuHT + GJetsHT + QCDPt + DiBosons + Higgs

mcSamples_Asymptotic50ns = [ TTJets_50ns, TTJets_LO_50ns, WJetsToLNu_50ns, DYJetsToLL_M50_50ns ] + QCDPt_50ns

mcSamples = RelVals740 + mcSamples_Asymptotic25ns + mcSamples_Asymptotic50ns

dataSamples = [jetHT_0T]

samples = mcSamples + dataSamples

### ---------------------------------------------------------------------

from CMGTools.TTHAnalysis.setup.Efficiencies import *
Expand All @@ -196,5 +206,5 @@
if __name__ == "__main__":
import sys
if "test" in sys.argv:
from CMGTools.TTHAnalysis.samples.ComponentCreator import testSamples
testSamples(mcSamples)
from CMGTools.RootTools.samples.ComponentCreator import testSamples
testSamples(samples)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#####COMPONENT CREATOR
from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()

T5ttttDeg_mGo1000_mStop300_mCh285_mChi280 = kreator.makeMCComponentFromEOS('T5ttttDeg_mGo1000_mStop300_mCh285_mChi280', '/T5ttttDeg_mGo1000_mStop300_mCh285_mChi280_23bodydec_v2/', '/store/cmst3/group/susy/gpetrucc/13TeV/RunIISpring15DR74/%s',".*root", 0.325388)
Expand Down Expand Up @@ -114,5 +114,5 @@
if __name__ == "__main__":
import sys
if "test" in sys.argv:
from CMGTools.TTHAnalysis.samples.ComponentCreator import testSamples
from CMGTools.RootTools.samples.ComponentCreator import testSamples
testSamples(mcSamplesPriv)
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

#####COMPONENT CREATOR

from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()

## CENTRALLY PRODUCED MINIAODs V1 (from global DBS, in T2_CH_CAF)
Expand Down Expand Up @@ -391,5 +391,5 @@
if __name__ == "__main__":
import sys
if "test" in sys.argv:
from CMGTools.TTHAnalysis.samples.ComponentCreator import testSamples
from CMGTools.RootTools.samples.ComponentCreator import testSamples
testSamples(mcSamples)
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

#####COMPONENT CREATOR

from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()

## CENTRALLY PRODUCED MINIAODs V2 (from global DBS, in T2_CH_CAF)
Expand Down Expand Up @@ -251,5 +251,5 @@
if __name__ == "__main__":
import sys
if "test" in sys.argv:
from CMGTools.TTHAnalysis.samples.ComponentCreator import testSamples
from CMGTools.RootTools.samples.ComponentCreator import testSamples
testSamples(mcSamples)
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@


################## Triggers
from CMGTools.TTHAnalysis.samples.triggers_13TeV_PHYS14 import *
from CMGTools.RootTools.samples.triggers_13TeV_PHYS14 import *



#####COMPONENT CREATOR

from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()


Expand Down Expand Up @@ -415,5 +415,5 @@
if __name__ == "__main__":
import sys
if "test" in sys.argv:
from CMGTools.TTHAnalysis.samples.ComponentCreator import testSamples
from CMGTools.RootTools.samples.ComponentCreator import testSamples
testSamples(mcSamples)
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#####COMPONENT CREATOR

from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()

#-----------DATA---------------
Expand Down Expand Up @@ -130,5 +130,5 @@
if __name__ == "__main__":
import sys
if "test" in sys.argv:
from CMGTools.TTHAnalysis.samples.ComponentCreator import testSamples
from CMGTools.RootTools.samples.ComponentCreator import testSamples
testSamples(mcSamples)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from CMGTools.TTHAnalysis.samples.getFiles import getFiles
from CMGTools.RootTools.samples.getFiles import getFiles
import PhysicsTools.HeppyCore.framework.config as cfg

import os
Expand Down Expand Up @@ -115,7 +115,7 @@

#####COMPONENT CREATOR

from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()

#-----------MC---------------
Expand Down Expand Up @@ -282,7 +282,7 @@
####################################################################################################################
#-----------PRIVATE FAST SIM---------------

lowmllFiles = [ f.strip() for f in open("%s/src/CMGTools/TTHAnalysis/python/samples/fastSim-lowmll.txt" % os.environ['CMSSW_BASE'], "r") if "cmgTuple_518" in f ]
lowmllFiles = [ f.strip() for f in open("%s/src/CMGTools/RootTools/python/samples/fastSim-lowmll.txt" % os.environ['CMSSW_BASE'], "r") if "cmgTuple_518" in f ]
def _grep(x,l): return [ i for i in l if x in i ]
FastSim_TTGStarMM = kreator.makePrivateMCComponent('FastSim_TTGStarMM', '/store/caf/user/gpetrucc/ttH/gen/2013-05-23/ttgstar_lowmll_mumu_v2', _grep('ttgstar_lowmll_mumu_v2', lowmllFiles) )
FastSim_TTGStarEE = kreator.makePrivateMCComponent('FastSim_TTGStarEE', '/store/caf/user/gpetrucc/ttH/gen/2013-05-23/ttgstar_lowmll_ee_v2', _grep('ttgstar_lowmll_ee_v2', lowmllFiles) )
Expand Down
2 changes: 1 addition & 1 deletion CMGTools/TTHAnalysis/cfg/run_susyAlphaT_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@


#-------- SAMPLES AND TRIGGERS -----------
from CMGTools.TTHAnalysis.samples.samples_13TeV_CSA14 import *
from CMGTools.RootTools.samples.samples_13TeV_CSA14 import *


# Selected samples as defined on the AlphaT twiki
Expand Down
4 changes: 2 additions & 2 deletions CMGTools/TTHAnalysis/cfg/run_susyCore_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#Load all common analyzers
from CMGTools.TTHAnalysis.analyzers.susyCore_modules_cff import *

from CMGTools.TTHAnalysis.samples.samples_8TeV_v517 import triggers_mumu, triggers_ee, triggers_mue, triggers_1mu
from CMGTools.RootTools.samples.samples_8TeV_v517 import triggers_mumu, triggers_ee, triggers_mue, triggers_1mu
# Tree Producer
treeProducer = cfg.Analyzer(
'treeProducerSusyCore',
Expand All @@ -30,7 +30,7 @@


#-------- SAMPLES AND TRIGGERS -----------
from CMGTools.TTHAnalysis.samples.samples_13TeV_CSA14 import *
from CMGTools.RootTools.samples.samples_13TeV_CSA14 import *

selectedComponents = [ SingleMu, DoubleElectron, TTHToWW_PUS14, DYJetsToLL_M50_PU20bx25, TTJets_PUS14 ]

Expand Down
2 changes: 1 addition & 1 deletion CMGTools/TTHAnalysis/cfg/run_susyEdge_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
## 'SingleEl' : triggers_1e,
## }

from CMGTools.TTHAnalysis.samples.samples_13TeV_PHYS14 import *
from CMGTools.RootTools.samples.samples_13TeV_PHYS14 import *

selectedComponents = [
] + WJetsToLNuHT + DYJetsM50HT + [ #DYJetsToLL_M50,
Expand Down
6 changes: 3 additions & 3 deletions CMGTools/TTHAnalysis/cfg/run_susyGenLevelMultilepton_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
)


from CMGTools.TTHAnalysis.samples.samples_8TeV_v517 import triggers_mumu, triggers_ee, triggers_mue, triggers_1mu
from CMGTools.RootTools.samples.samples_8TeV_v517 import triggers_mumu, triggers_ee, triggers_mue, triggers_1mu
# Tree Producer
treeProducer = cfg.Analyzer(
'treeProducerSusyGenLevelOnly',
Expand All @@ -33,7 +33,7 @@


#-------- SAMPLES AND TRIGGERS -----------
from CMGTools.TTHAnalysis.samples.samples_8TeV_v517 import *
from CMGTools.RootTools.samples.samples_8TeV_v517 import *
Test = kreator.makePrivateMCComponent('Test', '/store/cmst3/user/gpetrucc/maiani', ['m100_g050_3mu.GEN.root'] )
WZ3l_ascms = kreator.makePrivateMCComponent('WZ3l_ascms', '/store/cmst3/user/gpetrucc/maiani/tests', ['xs_wz_3l_ascms.GEN.root'])
WZ3mu_ascms = kreator.makePrivateMCComponent('WZ3mu_ascms', '/store/cmst3/user/gpetrucc/maiani/tests', ['xs_wz_3mu_ascms.GEN.root'])
Expand Down Expand Up @@ -88,7 +88,7 @@
#GEN_T1tttt_mGo1300_mStop300_mCh285_mChi280_mg5 = kreator.makePrivateMCComponent('GEN_T1tttt_mGo1300_mStop300_mCh285_mChi280_mg5', '/store/cmst3/user/gpetrucc/SUSY/Prod/T1tttt_mGo1300_mStop300_mCh285_mChi280_mg5dec_pythia8/', [ "T1tttt_mGo1300_mStop300_mCh285_mChi280_mg5dec_pythia8.run_%02d_chunk_%02d.root" % (i,j) for i in (1,2) for j in xrange(10) ])

### ====== SUSY: PRIVATE DECAY+HADRONIZATION OF CENTRALLY PRODUCED LHE FILES ==========
eosGenFiles = [ x.strip() for x in open(os.environ["CMSSW_BASE"]+"/src/CMGTools/TTHAnalysis/python/samples/genLevel-susySMS-13TeV", "r") ]
eosGenFiles = [ x.strip() for x in open(os.environ["CMSSW_BASE"]+"/src/CMGTools/RootTools/python/samples/genLevel-susySMS-13TeV", "r") ]
print eosGenFiles
def mkGen(name,what):
return kreator.makePrivateMCComponent(name, '/'+what, [ f for f in eosGenFiles if ("/%s/"%what) in f ] )
Expand Down
2 changes: 1 addition & 1 deletion CMGTools/TTHAnalysis/cfg/run_susyLeptonStudy_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@


#-------- SAMPLES
from CMGTools.TTHAnalysis.samples.samples_13TeV_CSA14 import *
from CMGTools.RootTools.samples.samples_13TeV_CSA14 import *

selectedComponents = [ TTJets_PU20bx25 ]

Expand Down
12 changes: 6 additions & 6 deletions CMGTools/TTHAnalysis/cfg/run_susyMT2_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
## PRODUCER
##------------------------------------------

from CMGTools.TTHAnalysis.samples.triggers_13TeV_PHYS14 import triggers_HT900, triggers_MET170, triggers_HTMET, triggers_MT2_mumu, triggers_MT2_ee, triggers_MT2_mue, triggers_1mu, triggers_photon155,triggers_1mu_isolow
from CMGTools.RootTools.samples.triggers_13TeV_PHYS14 import triggers_HT900, triggers_MET170, triggers_HTMET, triggers_MT2_mumu, triggers_MT2_ee, triggers_MT2_mue, triggers_1mu, triggers_photon155,triggers_1mu_isolow


triggerFlagsAna.triggerBits = {
Expand Down Expand Up @@ -216,9 +216,9 @@
doSpecialSettingsForMECCA = 1
if test==0:
# ------------------------------------------------------------------------------------------- #
# --- all this lines taken from CMGTools.TTHAnalysis.samples.samples_13TeV_PHYS14
# --- all this lines taken from CMGTools.RootTools.samples.samples_13TeV_PHYS14
# --- They may not be in synch anymore
from CMGTools.TTHAnalysis.samples.ComponentCreator import ComponentCreator
from CMGTools.RootTools.samples.ComponentCreator import ComponentCreator
kreator = ComponentCreator()
testComponent = kreator.makeMCComponent("testComponent", "/GJets_HT-200to400_Tune4C_13TeV-madgraph-tauola/Phys14DR-PU20bx25_PHYS14_25_V1-v1/MINIAODSIM", "CMS", ".*root",489.9)
mcSamples=[testComponent]
Expand Down Expand Up @@ -253,8 +253,8 @@
#eventSelector.toSelect = [ 84142401 ]
#sequence = cfg.Sequence([eventSelector] + sequence)
#from CMGTools.TTHAnalysis.samples.samples_13TeV_PHYS14 import *
from CMGTools.TTHAnalysis.samples.samples_13TeV_74X import *
from CMGTools.TTHAnalysis.samples.samples_8TeVReReco_74X import *
from CMGTools.RootTools.samples.samples_13TeV_74X import *
from CMGTools.RootTools.samples.samples_8TeVReReco_74X import *

# comp=GJets_HT200to400
# comp.files = ['/afs/cern.ch/user/d/dalfonso/public/TESTfilesPHY14/gjets_ht200to400_miniaodsim_fix.root']
Expand Down Expand Up @@ -286,7 +286,7 @@
#DYJetsToLL_M50_HT100to200, DYJetsToLL_M50_HT200to400, DYJetsToLL_M50_HT400to600, DYJetsToLL_M50_HT600toInf # DYJetsToLL_M50_HT
#]

from CMGTools.TTHAnalysis.samples.samples_13TeV_74X import *
from CMGTools.RootTools.samples.samples_13TeV_74X import *
selectedComponents = [
TTJets, TTJets_LO, # TTJets
QCD_Pt80to120, QCD_Pt120to170, QCD_Pt300to470, QCD_Pt470to600, QCD_Pt1000to1400, QCD_Pt1400to1800, QCD_Pt1800to2400, QCD_Pt2400to3200, QCD_Pt3200toInf, # QCD_Pt
Expand Down
16 changes: 8 additions & 8 deletions CMGTools/TTHAnalysis/cfg/run_susyMultilepton_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#-------- LOAD ALL ANALYZERS -----------

from CMGTools.TTHAnalysis.analyzers.susyCore_modules_cff import *
from CMGTools.TTHAnalysis.analyzers.susyCore_modules_cff import *


#-------- REDEFINE WHAT I NEED -----------
Expand Down Expand Up @@ -130,8 +130,8 @@
#-------- SAMPLES AND TRIGGERS -----------


from CMGTools.TTHAnalysis.samples.triggers_13TeV_Spring15 import *
from CMGTools.TTHAnalysis.samples.triggers_8TeV import triggers_1mu_8TeV, triggers_mumu_8TeV, triggers_mue_8TeV, triggers_ee_8TeV;
from CMGTools.RootTools.samples.triggers_13TeV_Spring15 import *
from CMGTools.RootTools.samples.triggers_8TeV import triggers_1mu_8TeV, triggers_mumu_8TeV, triggers_mue_8TeV, triggers_ee_8TeV;
triggerFlagsAna.triggerBits = {
'DoubleMu' : triggers_mumu_iso,
'DoubleMuSS' : triggers_mumu_ss,
Expand All @@ -156,9 +156,9 @@
'DoubleEl_8TeV' : triggers_ee_8TeV + triggers_ee_run1,
}

from CMGTools.TTHAnalysis.samples.samples_13TeV_74X import *
from CMGTools.TTHAnalysis.samples.samples_13TeV_74X_susySignalsPriv import *
from CMGTools.TTHAnalysis.samples.samples_8TeVReReco_74X import *
from CMGTools.RootTools.samples.samples_13TeV_74X import *
from CMGTools.RootTools.samples.samples_13TeV_74X_susySignalsPriv import *
from CMGTools.RootTools.samples.samples_8TeVReReco_74X import *

selectedComponents = [ SingleMu_742, MuEG_742, DoubleMu_742 ]
selectedComponents = [ TTJets, TTJets_LO, WJetsToLNu, DYJetsToLL_M10to50, DYJetsToLL_M50, ] + SingleTop + DiBosons
Expand Down Expand Up @@ -259,8 +259,8 @@
comp.splitFactor = 1
comp.fineSplitFactor = 1 if getHeppyOption("single") else 4
elif test == '74X-Data':
from CMGTools.TTHAnalysis.samples.samples_13TeV_74X import *
from CMGTools.TTHAnalysis.samples.samples_8TeVReReco_74X import *
from CMGTools.RootTools.samples.samples_13TeV_74X import *
from CMGTools.RootTools.samples.samples_8TeVReReco_74X import *
what = getHeppyOption("sample")
if what == "SingleMu":
selectedComponents = [ SingleMu_740p9 ]
Expand Down
4 changes: 2 additions & 2 deletions CMGTools/TTHAnalysis/cfg/run_susySingleSoftlepton_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
ttHHeavyFlavourHadronAnalyzer)


from CMGTools.TTHAnalysis.samples.samples_8TeV_v517 import triggers_1mu, triggers_1muHT, triggers_1eleHT # need to update the trigger MET pr HTMET?
from CMGTools.RootTools.samples.samples_8TeV_v517 import triggers_1mu, triggers_1muHT, triggers_1eleHT # need to update the trigger MET pr HTMET?

# Tree Producer
treeProducer = cfg.Analyzer(
Expand All @@ -61,7 +61,7 @@


#-------- SAMPLES AND TRIGGERS -----------
from CMGTools.TTHAnalysis.samples.samples_13TeV_CSA14 import *
from CMGTools.RootTools.samples.samples_13TeV_CSA14 import *
selectedComponents = [ SingleMu, DoubleElectron, TTHToWW_PUS14, DYJetsToLL_M50_PU20bx25, TTJets_PUS14 ]


Expand Down
4 changes: 2 additions & 2 deletions CMGTools/TTHAnalysis/cfg/run_susySinglelepton_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
etaSubJet = 5.0,
)

from CMGTools.TTHAnalysis.samples.samples_13TeV_PHYS14 import *
from CMGTools.RootTools.samples.samples_13TeV_PHYS14 import *

triggerFlagsAna.triggerBits = {
#put trigger here for data
Expand All @@ -105,7 +105,7 @@

#-------- SAMPLES AND TRIGGERS -----------

from CMGTools.TTHAnalysis.samples.samples_13TeV_PHYS14 import *
from CMGTools.RootTools.samples.samples_13TeV_PHYS14 import *
#selectedComponents = [QCD_HT_100To250, QCD_HT_250To500, QCD_HT_500To1000, QCD_HT_1000ToInf,TTJets, TTWJets, TTZJets, TTH, SMS_T1tttt_2J_mGl1500_mLSP100, SMS_T1tttt_2J_mGl1200_mLSP800] + SingleTop + WJetsToLNuHT + DYJetsM50HT + T5ttttDeg + T1ttbbWW + T5qqqqWW


Expand Down
4 changes: 2 additions & 2 deletions CMGTools/TTHAnalysis/cfg/run_susySoftlepton_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
)


from CMGTools.TTHAnalysis.samples.samples_8TeV_v517 import triggers_1mu, triggers_mumu, triggers_ee, triggers_mue, triggers_MET150, triggers_HT650, triggers_HTMET
from CMGTools.RootTools.samples.samples_8TeV_v517 import triggers_1mu, triggers_mumu, triggers_ee, triggers_mue, triggers_MET150, triggers_HT650, triggers_HTMET
# Tree Producer
treeProducer = cfg.Analyzer(
'treeProducerSusySoftlepton',
Expand All @@ -63,7 +63,7 @@


#-------- SAMPLES AND TRIGGERS -----------
from CMGTools.TTHAnalysis.samples.samples_13TeV_CSA14 import *
from CMGTools.RootTools.samples.samples_13TeV_CSA14 import *

selectedComponents = [ TTJets_MSDecaysCKM_central_PU_S14_POSTLS170, SingleMu, DoubleElectron, TTHToWW_PUS14, DYJetsToLL_M50_PU20bx25, TTJets_PUS14 ]

Expand Down
Loading

0 comments on commit 1fe3ac2

Please sign in to comment.