Revision: | 1.1 |
Committed: | Wed Jun 8 17:25:32 2011 UTC (13 years, 11 months ago) by tboccali |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | EDMV42_Step2_V6, EDMV42_Step2_V5a, EDMV42_Step2_V5, tauCandV42, hbbsubstructDev_11, hbbsubstructDev_10, hbbsubstructDev_9, hbbsubstructDev_8, hbbsubstructDev_7, hbbsubstructDev_6, hbbsubstructDev_5, hbbsubstructDev_4, hbbsubstructDev_3, hbbsubstructDev_2, hbbsubstructDev_1, hbbsubstructDev, V21TauCand_0, TauCandidates_0, EDMV42_Step2_V4a, EDMV42_Step2_V4, EDMV42_Step2_V3, EDMV42_Step2_V2, EDMV42_Step2_V1, EdmV42, EdmV41alpha1, EdmV40alpha1, EdmV40alpha, V21emuCand, EdmV33Jun12v2_consistent, Step2ForV33_v2, Step2ForV33_v1, EdmV33Jun12v2, EdmV33Jun12v1, EdmV33Jun12v0, Step2ForV32_v2, Step2ForV32_v0, Step2ForV31_v0, EdmV32May24v0, EdmV31May21v1, EdmV31May17v0, May14thStep2, EdmV30Apr10, EdmV21Apr10v2, EdmV22May9, EdmV21Apr06, EdmV21Apr10, EdmV21Apr04, EdmV21Apr03, EdmV21Apr2, EdmV21Mar30, EdmV20Mar12, EdmV11Oct2011_fixMET, EdmV11Oct2011, EdmV10Oct2011, EdmV9Sept2011, Sept19th2011_2, Sept19th2011, Sept19th, VHNtupleV9_AR1, VHSept15_AR1, Sept14th2011_2, Sept14th2011, Sept13th2011, AR_Sep8_LightNtuple, VHBB_EDMNtupleV3, AndreaAug10th, HBB_EDMNtupleV1_ProcV2, Jul28th2011, Jul26th2011, Jul25th2011, Jul22nd2011, Jul21st2011, Jul20th2011, Jul18th2011, Jul17th2011, Jul8th2011, Jun30th2011, Jun28th2011, Jun21th2011, Jun16th2011, Jun15th2011, Jun14th2011, Jun9th2011v2, Jun9th2011, HEAD |
Branch point for: | V42TauCandidate, hbbsubstructDevPostHCP, V21TauCand, TauCandidatesV21, V21emuCandidate |
Log Message: | first addition |
# | User | Rev | Content |
---|---|---|---|
1 | tboccali | 1.1 | import FWCore.ParameterSet.Config as cms |
2 | |||
3 | from RecoJets.JetProducers.CATopJetParameters_cfi import * | ||
4 | from RecoJets.JetProducers.GenJetParameters_cfi import * | ||
5 | from RecoJets.JetProducers.CaloJetParameters_cfi import * | ||
6 | from RecoJets.JetProducers.PFJetParameters_cfi import * | ||
7 | from RecoJets.JetProducers.AnomalousCellParameters_cfi import * | ||
8 | |||
9 | |||
10 | caTopCaloJets = cms.EDProducer("CATopJetProducer", | ||
11 | CATopJetParameters, | ||
12 | CaloJetParameters, | ||
13 | AnomalousCellParameters, | ||
14 | jetAlgorithm = cms.string("CambridgeAachen"), | ||
15 | rParam = cms.double(0.8) | ||
16 | ) | ||
17 | |||
18 | |||
19 | caTopGenJets = cms.EDProducer("CATopJetProducer", | ||
20 | CATopJetParameters, | ||
21 | GenJetParameters, | ||
22 | AnomalousCellParameters, | ||
23 | jetAlgorithm = cms.string("CambridgeAachen"), | ||
24 | rParam = cms.double(0.8) | ||
25 | ) | ||
26 | |||
27 | |||
28 | |||
29 | caTopPFJets = cms.EDProducer("CATopJetProducer", | ||
30 | CATopJetParameters, | ||
31 | PFJetParameters, | ||
32 | AnomalousCellParameters, | ||
33 | jetAlgorithm = cms.string("CambridgeAachen"), | ||
34 | rParam = cms.double(0.8) | ||
35 | ) | ||
36 |