Skip to content

Commit

Permalink
Merge pull request #39 from OSU-CMS/crabSkimSigSyst
Browse files Browse the repository at this point in the history
Adding CRAB submission, skimming selections and signal syst utilities
  • Loading branch information
borzari authored May 9, 2024
2 parents d1163eb + 6f8eb1a commit f5441a6
Show file tree
Hide file tree
Showing 11 changed files with 1,477 additions and 5 deletions.
36 changes: 36 additions & 0 deletions BackgroundEstimation/test/crab_BGEstSelections.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env python3

import os
from CRABClient.UserUtilities import config
config = config()

config.General.requestName = ''
config.General.workArea = 'crab'
config.General.transferOutputs = True
config.General.transferLogs = True

config.JobType.pluginName = 'Analysis'
config.JobType.psetName = 'config_2022_cfg.py'
config.JobType.allowUndistributedCMSSW = True

config.Data.inputDataset = '/WtoLNu-4Jets_TuneCP5_13p6TeV_madgraphMLM-pythia8/borzari-Test2CRAB-6c2551f7c8575c19e6da935800c0d62f/USER'
config.Data.inputDBS = 'phys03'
config.Data.splitting = 'FileBased'
config.Data.unitsPerJob = 5 # this is the amount of files processed per output file

config.Data.publication = True
config.Data.outputDatasetTag = 'MuonTagPt55' # this is just an example; it will be part of the name of the output dataset

# Uncomment one of the following pairs

#config.Data.outLFNDirBase = '/store/group/lpclonglived/DisappTrks/'
#config.Site.storageSite = 'T3_US_FNALLPC'

#config.Data.outLFNDirBase = '/store/user/%s/' % (user_name)
#config.Site.storageSite = 'T2_US_Purdue'

#config.Data.outLFNDirBase = '/store/group/phys_exotica/disappearingTracks/'
#config.Site.storageSite = 'T2_CH_CERN'

#config.Data.outLFNDirBase = '/store/user/borzari/'
#config.Site.storageSite = 'T2_BR_SPRACE'
Loading

0 comments on commit f5441a6

Please sign in to comment.