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/IsolationAlgos/data/MuonCalIsolation.cfi"
|
23 |
|
24 |
#
|
25 |
# dump event content
|
26 |
#
|
27 |
#module Dump = EventContentAnalyzer {}
|
28 |
|
29 |
#
|
30 |
# output stream
|
31 |
#
|
32 |
module OutputModule = PoolOutputModule
|
33 |
{
|
34 |
untracked string fileName = "test.root"
|
35 |
|
36 |
untracked vstring outputCommands = {
|
37 |
"drop *",
|
38 |
"keep *_*_*_USER",
|
39 |
"keep *_globalMuons_*_*",
|
40 |
"keep *_ctfWithMaterialTracks_*_*"
|
41 |
}
|
42 |
}
|
43 |
|
44 |
module dump = EventContentAnalyzer {}
|
45 |
|
46 |
path p1 = {MuonCalIsolation}
|
47 |
# path p1 = {dump}
|
48 |
endpath out = {OutputModule}
|
49 |
}
|