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.
2 
3 source = cms.Source("WatcherSource",
4  inputDir = cms.string('in'),
5  filePatterns = cms.vstring('.*\\.dat$'),
6  inprocessDir = cms.string('work'),
7  processedDir = cms.string('done'),
8  corruptedDir = cms.string('corrupted'),
9  tokenFile = cms.untracked.string('tok'),
10  verbosity = cms.untracked.int32(1),
11 #Waiting time out. Stop CMSSW if no file is found in the inputDir after this delay.
12 #There is no time out when starting the process. If there is no input file, when
13 #starting the process, it will wait forever. The time out applies only once some files
14 #were processed and input directory got exhausted.
15  timeOutInSec = cms.int32(4*60)
16 )