ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/python/MitPostRecoGenerator_cff.py
Revision: 1.1
Committed: Fri Sep 5 23:46:11 2008 UTC (16 years, 8 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
Log Message:
Fixed filling of simulation info, added config for simultaneous RAW-RECO reading

File Contents

# User Rev Content
1 bendavid 1.1 import FWCore.ParameterSet.Config as cms
2    
3     #track match
4     from TrackingTools.TransientTrack.TransientTrackBuilder_cfi import *
5     from SimGeneral.TrackingAnalysis.trackingParticles_cfi import *
6     from SimTracker.TrackAssociation.TrackAssociatorByChi2_cfi import *
7     from SimTracker.TrackAssociation.TrackAssociatorByHits_cfi import *
8     from SimTracker.TrackAssociation.trackMCMatch_cfi import *
9     from SimTracker.TrackAssociation.standAloneMuonsMCMatch_cfi import *
10     from SimTracker.TrackAssociation.globalMuonsMCMatch_cfi import *
11     from SimTracker.TrackAssociation.allTrackMCMatch_cfi import *
12     from SimTracker.TrackAssociation.trackingParticleRecoTrackAsssociation_cff import *
13     trackMCMatchSequence = cms.Sequence(trackMCMatch*standAloneMuonsMCMatch*globalMuonsMCMatch*allTrackMCMatch*trackingParticleRecoTrackAsssociation*assoc2GsfTracks*assocOutInConversionTracks*assocInOutConversionTracks)
14    
15     # define post-reco generator sequence
16     mit_postreco_generator = cms.Sequence(trackMCMatchSequence)