Skip to content

Commit

Permalink
Merge pull request #16 from bianchini/Lorenzo_V0
Browse files Browse the repository at this point in the history
added list to scratch
  • Loading branch information
emanca committed Mar 11, 2019
2 parents 59f590a + 093fc52 commit fb7235b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions wmass/controlPlots/defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,11 @@ class bcolors:
if not os.path.isdir(outDir): os.system('mkdir '+outDir)

# full production
production_file = open('/home/users/bianchini/wmass/CMSSW_10_2_9/src/PhysicsTools/NanoAODTools/crab/mcsamples_%s.txt' % str(dataYear), 'r')
production_file = open('/scratch/bianchini/NanoAOD%s-%s/mcsamples_%s.txt' % (str(dataYear), tag, str(dataYear)), 'r')
production_content = [x.strip() for x in production_file.readlines()]

restrict_to = ['QCD_Pt-300to470_MuEnrichedPt5_TuneCUETP8M1_13TeV_pythia8', 'QCD_Pt-80to120_MuEnrichedPt5_TuneCUETP8M1_13TeV_pythia8', 'SingleMuon_Run2016B_ver2' ]
restrict_to = []
restrict_to.extend(['QCD_Pt-300to470_MuEnrichedPt5_TuneCUETP8M1_13TeV_pythia8', 'QCD_Pt-80to120_MuEnrichedPt5_TuneCUETP8M1_13TeV_pythia8', 'SingleMuon_Run2016B_ver2' ])

# available filed
samples = os.listdir(inputDir)
Expand Down

0 comments on commit fb7235b

Please sign in to comment.