1 |
process USER = {
|
2 |
#
|
3 |
# keep the logging output to a nice level
|
4 |
#
|
5 |
include "FWCore/MessageLogger/data/MessageLogger.cfi"
|
6 |
|
7 |
#
|
8 |
# source data
|
9 |
#
|
10 |
source = PoolSource
|
11 |
{
|
12 |
untracked vstring fileNames = {
|
13 |
"file:/rdata/uhh-data01/scratch/auterman/data/131_mSUGRA_210_285_10_1_inclusive/CMSSW131_Pythia_MSUGRA_210_285_10_1_INCL_1.root"
|
14 |
}
|
15 |
untracked int32 maxEvents = -1
|
16 |
}
|
17 |
|
18 |
|
19 |
#
|
20 |
# produce isolated Muons
|
21 |
#
|
22 |
include "PhysicsTools/LeptonIsolation/data/MuonPtIsolation.cfi"
|
23 |
include "PhysicsTools/LeptonIsolation/data/MuonCalIsolation.cfi"
|
24 |
|
25 |
#
|
26 |
# dump event content
|
27 |
#
|
28 |
#module Dump = EventContentAnalyzer {}
|
29 |
|
30 |
#
|
31 |
# output stream
|
32 |
#
|
33 |
module OutputModule = PoolOutputModule
|
34 |
{
|
35 |
untracked string fileName = "test.root"
|
36 |
|
37 |
untracked vstring outputCommands = {
|
38 |
"drop *",
|
39 |
"keep *_*_*_USER",
|
40 |
"keep *_globalMuons_*_*",
|
41 |
"keep *_ctfWithMaterialTracks_*_*"
|
42 |
}
|
43 |
}
|
44 |
|
45 |
module dump = EventContentAnalyzer {}
|
46 |
|
47 |
path p1 = {MuonPtIsolation, MuonCalIsolation}
|
48 |
# path p1 = {dump}
|
49 |
endpath out = {OutputModule}
|
50 |
}
|