test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
watcherSource_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 source = cms.Source("WatcherSource",
4  inputDir = cms.string('in/'),
5  filePatterns = cms.vstring('run[[:digit:]]+/run.*\\\\.dat$'),
6 # filePatterns = cms.vstring('run.*\\\\.dat$'),
7  inprocessDir = cms.string('work'),
8  processedDir = cms.string('done'),
9  corruptedDir = cms.string('corrupted'),
10  tokenFile = cms.untracked.string('tok'),
11  verbosity = cms.untracked.int32(1),
12 #Waiting time out. Stop CMSSW if no file is found in the inputDir after this delay.
13 #There is no time out when starting the process. If there is no input file, when
14 #starting the process, it will wait forever. The time out applies only once some files
15 #were processed and input directory got exhausted.
16  timeOutInSec = cms.int32(4*60)
17 )