1 |
carrillo |
1.1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
|
|
3 |
|
|
process = cms.Process("CSCSegmentsAnalyzer")
|
4 |
|
|
|
5 |
|
|
process.maxEvents = cms.untracked.PSet(
|
6 |
|
|
input = cms.untracked.int32(10000)
|
7 |
|
|
)
|
8 |
|
|
|
9 |
|
|
process.source = cms.Source("PoolSource",
|
10 |
|
|
# fileNames = cms.untracked.vstring('file:/tmp/carrillo/W2_Se4_St2_HighLumiBis.root')
|
11 |
|
|
# fileNames = cms.untracked.vstring('file:/tmp/carrillo/W2_Se4_St2_LowLumi.root')
|
12 |
|
|
# fileNames = cms.untracked.vstring('rfio:/castor/cern.ch/user/j/jgomezca/NewRun1Container/_RPCMonitor_Run2011B-v1_RAW/180250/NewRun1Container-180250.E843AA1E-FD02-E111-81D3-BCAEC5329714.root')
|
13 |
|
|
fileNames = cms.untracked.vstring('rfio:/castor/cern.ch/user/j/jgomezca/OldRunContainer/_RPCMonitor_Run2011A-v1_RAW/163286/OldRunContainer-163286.14BFE702-DF6C-E011-8964-0030487C7E18.root')
|
14 |
|
|
)
|
15 |
|
|
|
16 |
|
|
process.CSCSegmentAnalyzer = cms.EDFilter("CSCSegmentAnalyzer",
|
17 |
|
|
cscSegments = cms.InputTag("hltCscSegments"),
|
18 |
|
|
# dt4DSegments = cms.InputTag("dTandCSCSegmentsinTracks",'SelectedDtSegments'),
|
19 |
|
|
fileName =cms.untracked.string('LowLumi_AllSegments.root'),
|
20 |
|
|
)
|
21 |
|
|
|
22 |
|
|
|
23 |
|
|
|
24 |
|
|
process.FEVT = cms.OutputModule("PoolOutputModule",
|
25 |
|
|
outputCommands = cms.untracked.vstring('drop *',
|
26 |
|
|
'keep *_dt4DSegments_*_*',
|
27 |
|
|
'keep *_cscSegments_*_*',
|
28 |
|
|
'keep *_muonRPCDigis_*_*',
|
29 |
|
|
'keep *_rpcRecHits_*_*'),
|
30 |
|
|
SelectEvents = cms.untracked.PSet(
|
31 |
|
|
SelectEvents = cms.vstring("compdt")
|
32 |
|
|
),
|
33 |
|
|
|
34 |
|
|
fileName = cms.untracked.string('/tmp/carrillo/W2_Se4_St2_LowLumiBisBis.root')
|
35 |
|
|
)
|
36 |
|
|
|
37 |
|
|
process.compdt = cms.Path(process.CSCSegmentAnalyzer)
|
38 |
|
|
process.outpath = cms.EndPath(process.FEVT)
|