Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:34

0001 from WMCore.Configuration import Configuration
0002 config = Configuration()
0003 
0004 config.section_('General')
0005 config.General.requestName = 'BsToJPsiPhi_full'
0006 # request name is the name of the folder where crab log is saved
0007 
0008 config.General.workArea = 'crab3_projects'
0009 config.General.transferOutputs = True
0010 
0011 config.section_('JobType')
0012 # set here the path of your working area
0013 config.JobType.psetName = '.../src/HeavyFlavorAnalysis/RecoDecay/test/cfg_full.py'
0014 config.JobType.pluginName = 'Analysis'
0015 config.JobType.outputFiles = ['dump_full.txt','hist_full.root']
0016 config.JobType.allowUndistributedCMSSW = True
0017 
0018 config.section_('Data')
0019 
0020 config.Data.inputDataset = '/BsToJpsiPhi_BMuonFilter_TuneCUEP8M1_13TeV-pythia8-evtgen/RunIISpring15DR74-Asympt25nsRaw_MCRUN2_74_V9-v1/AODSIM' 
0021 
0022 config.Data.splitting = 'FileBased'
0023 config.Data.unitsPerJob = 5
0024 
0025 # set here the path of a storage area you can write to
0026 config.Data.outLFNDirBase = '/store/user/...'
0027 config.Data.publication = False
0028 
0029 ############## 
0030 
0031 #config.Data.ignoreLocality = True
0032 
0033 config.section_("Site")
0034 
0035 # set here a storage site you can write to
0036 config.Site.storageSite = 'T2_IT_Legnaro'
0037 
0038 
0039 
0040 
0041