Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61151
b: "refs/heads/CMSSW_7_1_X"
c: 09edac3
h: "refs/heads/CMSSW_7_1_X"
i:
  61149: a7c053a
  61147: 83b1585
  61143: 356295a
  61135: 2b09fcb
  61119: 8025b7b
v: v3
  • Loading branch information
Thomas Speer committed Feb 27, 2009
1 parent a975fac commit 4e4c52d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
refs/heads/gh-pages: 09c786f70121f131b3715aaf3464996502bbeb7e
"refs/heads/CMSSW_7_1_X": 4467231654b7782f1bbfe1a07d1379fb9bad36c2
"refs/heads/CMSSW_7_1_X": 09edac33183f66db718b26a0ee615edd7632aa37
37 changes: 37 additions & 0 deletions trunk/RecoVertex/KinematicFit/test/testKineFit_cfg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import FWCore.ParameterSet.Config as cms

process = cms.Process("Demo")
#keep the logging output to a nice level
process.load("FWCore.MessageLogger.MessageLogger_cfi")

process.load("Configuration.StandardSequences.MagneticField_cff")

process.load("Configuration.StandardSequences.Services_cff")

process.load("Configuration.StandardSequences.Geometry_cff")

process.load("Configuration.StandardSequences.FakeConditions_cff")

process.load("TrackingTools.TransientTrack.TransientTrackBuilder_cfi")

process.load("SimTracker.TrackAssociation.TrackAssociatorByChi2_cfi")

process.load("SimTracker.TrackAssociation.TrackAssociatorByHits_cfi")

process.source = cms.Source("PoolSource",
fileNames = cms.untracked.vstring(
'/store/relval/CMSSW_2_1_8/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/IDEAL_V9_v1/0002/04983078-9082-DD11-BB8C-0019DB2F3F9B.root')
)

process.simpleVertexAnalysis = cms.EDFilter("KineExample",
KVFParameters = cms.PSet(
maxDistance = cms.double(0.01),
maxNbrOfIterations = cms.int32(10)
),
outputFile = cms.untracked.string('simpleVertexAnalyzer.root'),
TrackLabel = cms.string('generalTracks')
)

process.p = cms.Path(process.simpleVertexAnalysis)


0 comments on commit 4e4c52d

Please sign in to comment.