コード例 #1
0
ファイル: manageStreams.py プロジェクト: dmitrijus/merger
def launch_file_making(streamName, contentInputFile, lumiSections, runNumber,
                       theBUId, thePath, theTotalBUs, sleep_time,
                       theNumberOfFilesPerLS, theNInput, theNOutput):
    time.sleep(sleep_time)
    createFiles(streamName, contentInputFile, lumiSections, runNumber, theBUId,
                thePath, theTotalBUs, 0.0, -1, theNumberOfFilesPerLS,
                theNInput, theNOutput)
コード例 #2
0
ファイル: manageStreams.py プロジェクト: cmsdaq/merger
def launch_file_making(streamName, contentInputFile, lumiSections, runNumber,
                       theBUId, thePath, theTotalBUs, sleep_time, 
		       theNumberOfFilesPerLS, theNInput, theNOutput):
    time.sleep(sleep_time)
    createFiles(streamName, contentInputFile, lumiSections, runNumber,
                theBUId, thePath, theTotalBUs, 0.0, -1,
                theNumberOfFilesPerLS, theNInput, theNOutput)
コード例 #3
0
ファイル: makeInputFiles.py プロジェクト: cmsdaq/merger
def startCreateFiles (streamName, size, lumiSections, runNumber, theBUNumber, theOption, thePath, result_queue):
    res = createFiles(streamName, size, lumiSections, runNumber, theBUNumber, theOption, thePath)
    result_queue.put(res)
コード例 #4
0
ファイル: makeInputFiles.py プロジェクト: dmitrijus/merger
def startCreateFiles(streamName, size, lumiSections, runNumber, theBUNumber,
                     theOption, thePath, result_queue):
    res = createFiles(streamName, size, lumiSections, runNumber, theBUNumber,
                      theOption, thePath)
    result_queue.put(res)
コード例 #5
0
def startCreateFiles (streamName, size, lumiSections, result_queue):
    res = createFiles(streamName, size, lumiSections)
    result_queue.put(res)