Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 source = cms.Source("WatcherSource",
0004                     inputDir      = cms.string('in/'),
0005                     filePatterns  = cms.vstring('run[[:digit:]]+/run.*\\\\.dat$'),
0006 #                    filePatterns  = cms.vstring('run.*\\\\.dat$'),
0007                     inprocessDir  = cms.string('work'),
0008                     processedDir  = cms.string('done'),
0009                     corruptedDir  = cms.string('corrupted'),
0010                     tokenFile     = cms.untracked.string('tok'),
0011                     verbosity     = cms.untracked.int32(1),
0012 #Waiting time out. Stop CMSSW if no file is found in the inputDir after this delay.
0013 #There is no time out when starting the process. If there is no input file, when
0014 #starting the process, it will wait forever. The time out applies only  once some files
0015 #were processed and input directory got exhausted.
0016                     timeOutInSec  = cms.int32(4*60)
0017 )