Skip to content

Commit 3fef448

Browse files
committed
Merge pull request #2 from gechen/branch-14-10-2014
Merged thanks!
2 parents c5a93fb + 75991a1 commit 3fef448

11 files changed

Lines changed: 397 additions & 476 deletions

python/BuToJPSiK_8TeV.py

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
import FWCore.ParameterSet.Config as cms
2+
from btokmumu_2012_cfi import process
3+
4+
5+
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) )
6+
#process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
7+
8+
process.source = cms.Source("PoolSource",
9+
fileNames = cms.untracked.vstring(
10+
#'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6.root',
11+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_1_1_96m.root',
12+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_2_1_dfI.root',
13+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_3_1_ud5.root',
14+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_4_1_neu.root',
15+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_5_1_8Kc.root',
16+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarJPsi_7TeV_PYTHIA6_100.root',
17+
# 'file:/afs/cern.ch/user/w/wguo/work/CMSSW_5_3_11/src/wguo_xin/BToKMuMu/python/2012testMC_numEvent5000.root',
18+
# 'file:/afs/cern.ch/work/n/nsahoo/BPH-ANALYSIS/afb/SE/aod/mc/2012_test_BToKMuMu_500.root',
19+
# 'file:/afs/cern.ch/work/n/nsahoo/BPH-ANALYSIS/afb/SE/aod/mc/2012_test_BToKMuMu_1000.root',
20+
#'root://xrootd.unl.edu//store/mc/Summer12_DR53X/Bu2MuMuK_TuneZ2star_8TeV_Pythia6/AODSIM/PU_RD2_START53_V19F-v1/00000/000771A0-9408-E411-94C0-002590DB92A8.root',
21+
'root://xrootd.unl.edu//store/mc/Summer12_DR53X/BuJpsiK_TuneZ2star_8TeV_Pythia6/AODSIM/PU_RD2_START53_V19F-v1/00000/00086026-C705-E411-B655-90E6BAE8CC0C.root',
22+
#'root://xrootd.unl.edu//store/mc/Summer12_DR53X/BuToPsiK_KFilter_TuneZ2star_SVS_8TeV-pythia6-evtgen/AODSIM/PU_RD2_START53_V19F-v1/00000/001E2794-0711-E411-B5F0-02163E008EBC.root',
23+
# '/store/mc/Summer12_DR53X/BuToMuMuK_EtaPtFilter_8TeV-pythia6-evtgen/AODSIM/PU_S10_START53_V7C-v1/20000/9C4AFE3E-BA65-E211-821F-AC162DACC3E8.root',
24+
25+
)
26+
)
27+
#process.GlobalTag.globaltag = cms.string('GR_R_42_V25::All')r
28+
#process.GlobalTag.globaltag = cms.string('START53_V23::All')
29+
process.GlobalTag.globaltag = cms.string('START53_V7G::All')
30+
31+
# do trigger matching for muons
32+
triggerProcessName = 'HLT'
33+
34+
35+
process.cleanMuonTriggerMatchHLT0 = cms.EDProducer(
36+
# match by DeltaR only (best match by DeltaR)
37+
'PATTriggerMatcherDRLessByR',
38+
src = cms.InputTag('cleanPatMuons'),
39+
# default producer label as defined in
40+
# PhysicsTools/PatAlgos/python/triggerLayer1/triggerProducer_cfi.py
41+
matched = cms.InputTag('patTrigger'),
42+
matchedCuts = cms.string('path("HLT_DoubleMu3p5_LowMass_Displaced*",0,0)'),
43+
maxDeltaR = cms.double(0.1),
44+
# only one match per trigger object
45+
resolveAmbiguities = cms.bool(True),
46+
# take best match found per reco object (by DeltaR here, see above)
47+
resolveByMatchQuality = cms.bool(False))
48+
49+
50+
from PhysicsTools.PatAlgos.tools.trigTools import *
51+
switchOnTriggerMatchEmbedding(process, triggerMatchers = ['cleanMuonTriggerMatchHLT0'],
52+
hltProcess = triggerProcessName, outputModule = '')
53+
54+
g_TriggerNames_LastFilterNames = [
55+
('HLT_DoubleMu3p5_LowMass_Displaced', 'hltDisplacedmumuFilterDoubleMu3p5LowMass')
56+
]
57+
58+
g_TriggerNames = [i[0] for i in g_TriggerNames_LastFilterNames]
59+
g_LastFilterNames = [i[1] for i in g_TriggerNames_LastFilterNames]
60+
61+
62+
process.ntuple.TriggerNames = cms.vstring(g_TriggerNames)
63+
process.ntuple.LastFilterNames = cms.vstring(g_LastFilterNames)
64+
process.ntuple.IsMonteCarlo = cms.untracked.bool(True)
65+
process.ntuple.KeepGENOnly = cms.untracked.bool(False)

python/BuToPsi2SK_8TeV.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@
6161
process.ntuple.TriggerNames = cms.vstring(g_TriggerNames)
6262
process.ntuple.LastFilterNames = cms.vstring(g_LastFilterNames)
6363
process.ntuple.IsMonteCarlo = cms.untracked.bool(True)
64+
process.ntuple.KeepGENOnly = cms.untracked.bool(False)
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
# Auto generated configuration file
2+
# using:
3+
# Revision: 1.381.2.28
4+
# Source: /local/reps/CMSSW/CMSSW/Configuration/PyReleaseValidation/python/ConfigBuilder.py,v
5+
# with command line options: ana/BToKMuMu/python/PYTHIA6_Bu2MuMuK_TuneZ2star_8TeV_GEN_cff.py --step GEN --beamspot Realistic8TeVCollision --conditions START53_LV6A1::All --pileup NoPileUp --datamix NODATAMIXER --eventcontent RAWSIM --datatier GEN --no_exec -n 10 --fileout BToKMuMu_MC_OnlyGEN_8TeV.root --python_filename PYTHIA6_Bu2MuMuK_TuneZ2star_8TeV_GENOnly.py
6+
import FWCore.ParameterSet.Config as cms
7+
8+
process = cms.Process('GEN')
9+
10+
# import of standard configurations
11+
process.load('Configuration.StandardSequences.Services_cff')
12+
process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
13+
process.load('FWCore.MessageService.MessageLogger_cfi')
14+
process.load('Configuration.EventContent.EventContent_cff')
15+
process.load('SimGeneral.MixingModule.mixNoPU_cfi')
16+
process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
17+
process.load('Configuration.StandardSequences.MagneticField_38T_cff')
18+
process.load('Configuration.StandardSequences.Generator_cff')
19+
process.load('IOMC.EventVertexGenerators.VtxSmearedRealistic8TeVCollision_cfi')
20+
process.load('GeneratorInterface.Core.genFilterSummary_cff')
21+
process.load('Configuration.StandardSequences.EndOfProcess_cff')
22+
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
23+
24+
process.maxEvents = cms.untracked.PSet(
25+
input = cms.untracked.int32(10)
26+
)
27+
28+
# Input source
29+
process.source = cms.Source("EmptySource")
30+
31+
process.options = cms.untracked.PSet(
32+
33+
)
34+
35+
# Production Info
36+
process.configurationMetadata = cms.untracked.PSet(
37+
version = cms.untracked.string('$Revision: 1.1 $'),
38+
annotation = cms.untracked.string('B+ -> mu+ mu- K+ at 8TeV'),
39+
name = cms.untracked.string('$Source: /local/reps/CMSSW/CMSSW/Configuration/GenProduction/python/EightTeV/PYTHIA6_Bu2MuMuK_TuneZ2star_8TeV_cff.py,v $')
40+
)
41+
42+
# Output definition
43+
44+
process.RAWSIMoutput = cms.OutputModule("PoolOutputModule",
45+
splitLevel = cms.untracked.int32(0),
46+
eventAutoFlushCompressedSize = cms.untracked.int32(5242880),
47+
outputCommands = process.RAWSIMEventContent.outputCommands,
48+
fileName = cms.untracked.string('BToKMuMu_MC_OnlyGEN_8TeV.root'),
49+
dataset = cms.untracked.PSet(
50+
filterName = cms.untracked.string(''),
51+
dataTier = cms.untracked.string('GEN')
52+
),
53+
SelectEvents = cms.untracked.PSet(
54+
SelectEvents = cms.vstring('generation_step')
55+
)
56+
)
57+
58+
# Additional output definition
59+
60+
# Other statements
61+
process.genstepfilter.triggerConditions=cms.vstring("generation_step")
62+
from Configuration.AlCa.GlobalTag import GlobalTag
63+
process.GlobalTag = GlobalTag(process.GlobalTag, 'START53_LV6A1::All', '')
64+
65+
process.decayfilter = cms.EDFilter("PythiaDauVFilter",
66+
MinPt = cms.untracked.vdouble(-1.0, 0, 0),
67+
ParticleID = cms.untracked.int32(521),
68+
MaxEta = cms.untracked.vdouble(9999.0, 9999, 9999),
69+
MinEta = cms.untracked.vdouble(-9999.0, -9999, -9999),
70+
DaughterIDs = cms.untracked.vint32(321, -13, 13),
71+
NumberDaughters = cms.untracked.int32(3),
72+
verbose = cms.untracked.int32(0)
73+
)
74+
75+
76+
process.bfilter = cms.EDFilter("PythiaFilter",
77+
MaxEta = cms.untracked.double(9999.0),
78+
MinEta = cms.untracked.double(-9999.0),
79+
ParticleID = cms.untracked.int32(521)
80+
)
81+
82+
83+
process.generator = cms.EDFilter("Pythia6GeneratorFilter",
84+
ExternalDecays = cms.PSet(
85+
EvtGen = cms.untracked.PSet(
86+
use_default_decay = cms.untracked.bool(False),
87+
decay_table = cms.FileInPath('GeneratorInterface/ExternalDecays/data/DECAY_NOLONGLIFE.DEC'),
88+
particle_property_file = cms.FileInPath('GeneratorInterface/ExternalDecays/data/evt.pdl'),
89+
user_decay_file = cms.FileInPath('GeneratorInterface/ExternalDecays/data/Bu_mumuK.dec'),
90+
list_forced_decays = cms.vstring('MyB+',
91+
'MyB-'),
92+
operates_on_particles = cms.vint32(0)
93+
),
94+
parameterSets = cms.vstring('EvtGen')
95+
),
96+
pythiaPylistVerbosity = cms.untracked.int32(0),
97+
filterEfficiency = cms.untracked.double(0.003),
98+
pythiaHepMCVerbosity = cms.untracked.bool(False),
99+
comEnergy = cms.double(8000.0),
100+
crossSection = cms.untracked.double(48440000000.0),
101+
maxEventsToPrint = cms.untracked.int32(0),
102+
PythiaParameters = cms.PSet(
103+
pythiaUESettings = cms.vstring('MSTU(21)=1 ! Check on possible errors during program execution',
104+
'MSTJ(22)=2 ! Decay those unstable particles',
105+
'PARJ(71)=10 . ! for which ctau 10 mm',
106+
'MSTP(33)=0 ! no K factors in hard cross sections',
107+
'MSTP(2)=1 ! which order running alphaS',
108+
'MSTP(51)=10042 ! structure function chosen (external PDF CTEQ6L1)',
109+
'MSTP(52)=2 ! work with LHAPDF',
110+
'PARP(82)=1.921 ! pt cutoff for multiparton interactions',
111+
'PARP(89)=1800. ! sqrts for which PARP82 is set',
112+
'PARP(90)=0.227 ! Multiple interactions: rescaling power',
113+
'MSTP(95)=6 ! CR (color reconnection parameters)',
114+
'PARP(77)=1.016 ! CR',
115+
'PARP(78)=0.538 ! CR',
116+
'PARP(80)=0.1 ! Prob. colored parton from BBR',
117+
'PARP(83)=0.356 ! Multiple interactions: matter distribution parameter',
118+
'PARP(84)=0.651 ! Multiple interactions: matter distribution parameter',
119+
'PARP(62)=1.025 ! ISR cutoff',
120+
'MSTP(91)=1 ! Gaussian primordial kT',
121+
'PARP(93)=10.0 ! primordial kT-max',
122+
'MSTP(81)=21 ! multiple parton interactions 1 is Pythia default',
123+
'MSTP(82)=4 ! Defines the multi-parton model'),
124+
bbbarSettings = cms.vstring('MSEL = 1'),
125+
parameterSets = cms.vstring('pythiaUESettings',
126+
'bbbarSettings')
127+
)
128+
)
129+
130+
131+
process.ProductionFilterSequence = cms.Sequence(process.generator+process.bfilter+process.decayfilter)
132+
133+
# Path and EndPath definitions
134+
process.generation_step = cms.Path(process.pgen)
135+
process.genfiltersummary_step = cms.EndPath(process.genFilterSummary)
136+
process.endjob_step = cms.EndPath(process.endOfProcess)
137+
process.RAWSIMoutput_step = cms.EndPath(process.RAWSIMoutput)
138+
139+
# Schedule definition
140+
process.schedule = cms.Schedule(process.generation_step,process.genfiltersummary_step,process.endjob_step,process.RAWSIMoutput_step)
141+
# filter all path with the production filter sequence
142+
for path in process.paths:
143+
getattr(process,path)._seq = process.ProductionFilterSequence * getattr(process,path)._seq
144+

python/btokmumu_2012_cfi.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
MuonMass = cms.untracked.double(0.10565837),
152152
MuonMassErr = cms.untracked.double(3.5*1e-9),
153153
KaonMass = cms.untracked.double(0.493677),
154-
KaonMassErr = cms.untracked.double(1.6*1e-5),
154+
KaonMassErr = cms.untracked.double(1.6*1e-5),
155155
# PionMass = cms.untracked.double(0.13957018),
156156
# PionMassErr = cms.untracked.double(0.13957018*1e-6),
157157
#KshortMass = cms.untracked.double(0.497614),
@@ -173,7 +173,8 @@
173173

174174
# gen particle
175175
IsMonteCarlo = cms.untracked.bool(False),
176-
TruthMatchMuonMaxR = cms.untracked.double(0.004), # [eta-phi]
176+
KeepGENOnly = cms.untracked.bool(False),
177+
TruthMatchMuonMaxR = cms.untracked.double(0.004), # [eta-phi]
177178
TruthMatchKaonMaxR = cms.untracked.double(0.3), # [eta-phi]
178179
# TruthMatchKsMaxVtx = cms.untracked.double(10.0),
179180

@@ -192,8 +193,8 @@
192193
MuMuMinCosAlphaBs = cms.untracked.double(0.9),
193194

194195
# pre-selection cuts
195-
TrkMinPt = cms.untracked.double(0.4), # [GeV/c]
196-
TrkMinDcaSigBs = cms.untracked.double(1.2), # hadron DCA/sigma w/respect to BS [1.2]
196+
TrkMinPt = cms.untracked.double(0.2), # [GeV/c]
197+
TrkMinDcaSigBs = cms.untracked.double(0.1), # hadron DCA/sigma w/respect to BS [1.2]
197198
TrkMaxR = cms.untracked.double(110.0), # [cm]
198199
TrkMaxZ = cms.untracked.double(280.0), # [cm]
199200

python/btokmumu_Data_8TeV.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import FWCore.ParameterSet.Config as cms
22
from btokmumu_2012_cfi import process
33

4-
5-
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) )
6-
#process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
4+
#process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) )
5+
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
76

87
process.source = cms.Source("PoolSource",
98
fileNames = cms.untracked.vstring(
10-
'root://xrootd.unl.edu//store/data/Run2012A/DoubleMuParked/AOD/22Jan2013-v1/20000/002557DC-16D4-E211-9415-20CF3027A5AB.root',
9+
#'root://xrootd.unl.edu//store/data/Run2012A/DoubleMuParked/AOD/22Jan2013-v1/20000/002557DC-16D4-E211-9415-20CF3027A5AB.root',
10+
'root://xrootd.unl.edu//store/data/Run2012B/MuOniaParked/AOD/22Jan2013-v1/20000/00054BD0-5668-E211-8091-00215E21DC7E.root',
1111
#'file:/afs/cern.ch/work/n/nsahoo/BPH-ANALYSIS/afb/SE/aod/data/2012_test_data_Run2012B_Jan2013_1000.root',
1212
#'file:/afs/cern.ch/work/n/nsahoo/BPH-ANALYSIS/afb/SE/aod/data/2012_test_data_Run2012B_15000.root'
1313
#'/store/data/Run2012A/DoubleMuParked/AOD/22Jan2013-v1/20000/00A96C5F-0ED4-E211-A18C-485B39800C15.root'
@@ -52,4 +52,4 @@
5252

5353
process.ntuple.TriggerNames = cms.vstring(g_TriggerNames)
5454
process.ntuple.LastFilterNames = cms.vstring(g_LastFilterNames)
55-
55+
process.ntuple.KeepGENOnly = cms.untracked.bool(False)

python/btokmumu_MC_8TeV.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,4 @@
5959
process.ntuple.TriggerNames = cms.vstring(g_TriggerNames)
6060
process.ntuple.LastFilterNames = cms.vstring(g_LastFilterNames)
6161
process.ntuple.IsMonteCarlo = cms.untracked.bool(True)
62+
process.ntuple.KeepGENOnly = cms.untracked.bool(False)

python/btokmumu_MC_GENOnly.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import FWCore.ParameterSet.Config as cms
2+
from btokmumu_2012_cfi import process
3+
4+
#process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(100) )
5+
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
6+
7+
process.source = cms.Source("PoolSource",
8+
fileNames = cms.untracked.vstring(
9+
#'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6.root',
10+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_1_1_96m.root',
11+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_2_1_dfI.root',
12+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_3_1_ud5.root',
13+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_4_1_neu.root',
14+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarMuMu_7TeV_PYTHIA6_5_1_8Kc.root',
15+
# 'file:/afs/cern.ch/user/x/xshi/work/cms/afb/dat/aod/mc/BuToKstarJPsi_7TeV_PYTHIA6_100.root',
16+
# 'file:/afs/cern.ch/user/w/wguo/work/CMSSW_5_3_11/src/wguo_xin/BToKMuMu/python/2012testMC_numEvent5000.root',
17+
# 'file:/afs/cern.ch/work/n/nsahoo/BPH-ANALYSIS/afb/SE/aod/mc/2012_test_BToKMuMu_500.root',
18+
'file:/afs/cern.ch/user/g/gechen/gechen/work/BToKMuMu/Ana/RootFiles/MC_GENOnly/BToKMuMu_MC_OnlyGEN_8TeV_9.root',
19+
# '/store/mc/Summer12_DR53X/BuToMuMuK_EtaPtFilter_8TeV-pythia6-evtgen/AODSIM/PU_S10_START53_V7C-v1/20000/9C4AFE3E-BA65-E211-821F-AC162DACC3E8.root',
20+
21+
)
22+
)
23+
#process.GlobalTag.globaltag = cms.string('GR_R_42_V25::All')r
24+
#process.GlobalTag.globaltag = cms.string('START53_V23::All')
25+
process.GlobalTag.globaltag = cms.string('START53_V7G::All')
26+
27+
process.ntuple.IsMonteCarlo = cms.untracked.bool(True)
28+
process.ntuple.KeepGENOnly = cms.untracked.bool(True)
29+
process.p = cms.Path(process.ntuple)

python/cb_MC_GENOnly_8TeV.cfg

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[CRAB]
2+
jobtype = cmssw
3+
scheduler = remoteGlidein
4+
use_server = 0
5+
6+
7+
[CMSSW]
8+
get_edm_output = 1
9+
generator = pythia
10+
total_number_of_events = 500000000
11+
number_of_jobs = 2000
12+
pset = ./PYTHIA6_Bu2MuMuK_TuneZ2star_8TeV_GENOnly.py
13+
datasetpath = None
14+
output_file = BToKMuMu_MC_OnlyGEN_8TeV.root
15+
#dbs_url = phys03
16+
17+
[USER]
18+
ui_working_dir = BuToKMuMu_MC_GENOnly_8TeV_v3
19+
user_remote_dir = BuToKMuMu_MC_GENOnly_8TeV_v3
20+
#local_stage_out = 1
21+
return_data = 0
22+
storage_element = T2_CN_Beijing
23+
#storage_element = T2_UK_SGrid_Bristol
24+
copy_data = 1
25+
publish_data = 1
26+
publish_data_name = PYTHIA6_Bu2MuMuK_TuneZ2star_GENOnly_8TeV_v3
27+
dbs_url_for_publication = phys03
28+
29+
[GRID]
30+
rb = CERN
31+
proxy_server = myproxy.cern.ch
32+
33+
34+
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[CRAB]
2+
jobtype = cmssw
3+
scheduler = remoteGlidein
4+
use_server = 0
5+
6+
7+
[CMSSW]
8+
get_edm_output = 1
9+
#generator = pythia
10+
total_number_of_events = -1
11+
number_of_jobs = 2000
12+
pset = ./btokmumu_MC_GENOnly.py
13+
datasetpath = /PYTHIA6_Bu2MuMuK_TuneZ2star_GENOnly_8TeV_v3/gechen-PYTHIA6_Bu2MuMuK_TuneZ2star_GENOnly_8TeV_v3-afd5e29ce33c42baca35170346e3548c/USER
14+
#datasetpath = /PYTHIA6_Bu2MuMuK_TuneZ2star_GENOnly_8TeV_v2/gechen-PYTHIA6_Bu2MuMuK_TuneZ2star_GENOnly_8TeV_v2-afd5e29ce33c42baca35170346e3548c/USER
15+
output_file = BToKMuMu_GENOnly_8TeV_Ntuple.root
16+
dbs_url = phys03
17+
18+
[USER]
19+
ui_working_dir = BuToKMuMu_MC_GENOnly_8TeV_Ntuples_v3
20+
user_remote_dir = BuToKMuMu_MC_GENOnly_8TeV_Ntuples_v3
21+
#local_stage_out = 1
22+
return_data = 0
23+
storage_element = T2_CN_Beijing
24+
#storage_element = T2_UK_SGrid_Bristol
25+
copy_data = 1
26+
#publish_data = 1
27+
#publish_data_name = PYTHIA6_Bu2MuMuK_TuneZ2star_GENOnly_8TeV_v2
28+
#dbs_url_for_publication = phys03
29+
30+
[GRID]
31+
rb = CERN
32+
proxy_server = myproxy.cern.ch
33+
34+
35+

0 commit comments

Comments
 (0)