CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GsfElectronSelector.h
Go to the documentation of this file.
1 #ifndef RecoAlgos_GsfElectronSelector_h
2 #define RecoAlgos_GsfElectronSelector_h
3 
23 
24 namespace helper {
35  }
36  template<typename I>
37  void cloneAndStore( const I & begin, const I & end, edm::Event & evt ) {
38  using namespace reco;
39  TrackingRecHitRefProd rHits = evt.template getRefBeforePut<TrackingRecHitCollection>();
40  TrackExtraRefProd rTrackExtras = evt.template getRefBeforePut<TrackExtraCollection>();
41  GsfTrackExtraRefProd rGsfTrackExtras = evt.template getRefBeforePut<GsfTrackExtraCollection>();
42  GsfTrackRefProd rTracks = evt.template getRefBeforePut<GsfTrackCollection>();
43  GsfElectronCoreRefProd rElectronCores = evt.template getRefBeforePut<GsfElectronCoreCollection>();
44  GsfElectronRefProd rElectrons = evt.template getRefBeforePut<GsfElectronCollection>();
45  SuperClusterRefProd rSuperClusters = evt.template getRefBeforePut<SuperClusterCollection>();
46  size_t idx = 0, tidx = 0, hidx = 0;
47  for( I i = begin; i != end; ++ i ) {
48  const GsfElectron & ele = * * i;
49  selElectronCores_->push_back( GsfElectronCore( *(ele.core()) ) );
50  selElectronCores_->back().setGsfTrack( GsfTrackRef( rTracks, idx ) );
51  selElectronCores_->back().setSuperCluster( SuperClusterRef( rSuperClusters, idx ) );
52  selSuperClusters_->push_back( SuperCluster( * ( ele.superCluster() ) ) );
54  GsfTrackRef trkRef = ele.gsfTrack();
55  if ( trkRef.isNonnull() ) {
56  selTracks_->push_back( GsfTrack( * trkRef ) );
57  GsfTrack & trk = selTracks_->back();
58  selTrackExtras_->push_back( TrackExtra( trk.outerPosition(), trk.outerMomentum(), trk.outerOk(),
59  trk.innerPosition(), trk.innerMomentum(), trk.innerOk(),
60  trk.outerStateCovariance(), trk.outerDetId(),
61  trk.innerStateCovariance(), trk.innerDetId(),
62  trk.seedDirection() ) );
63  selGsfTrackExtras_->push_back( GsfTrackExtra( *(trk.gsfExtra()) ) );
64  TrackExtra & tx = selTrackExtras_->back();
65  for( trackingRecHit_iterator hit = trk.recHitsBegin(); hit != trk.recHitsEnd(); ++ hit ) {
66  selHits_->push_back( (*hit)->clone() );
67  tx.add( TrackingRecHitRef( rHits, hidx ++ ) );
68  }
69  trk.setGsfExtra( GsfTrackExtraRef( rGsfTrackExtras, tidx ) );
70  trk.setExtra( TrackExtraRef( rTrackExtras, tidx ++ ) );
71  }
72  }
73  }
74 
77  evt.put( selElectronCores_ );
78  evt.put( selSuperClusters_ );
79  evt.put( selTracks_ );
80  evt.put( selTrackExtras_ );
81  evt.put( selGsfTrackExtras_ );
82  evt.put( selHits_ );
83  return h;
84  }
85 
86  size_t size() const { return selElectrons_->size(); }
87  private:
88  std::auto_ptr<reco::GsfElectronCollection> selElectrons_;
89  std::auto_ptr<reco::GsfElectronCoreCollection> selElectronCores_;
90  std::auto_ptr<reco::SuperClusterCollection> selSuperClusters_;
91  std::auto_ptr<reco::GsfTrackCollection> selTracks_;
92  std::auto_ptr<reco::TrackExtraCollection> selTrackExtras_;
93  std::auto_ptr<reco::GsfTrackExtraCollection> selGsfTrackExtras_;
94  std::auto_ptr<TrackingRecHitCollection> selHits_;
95  };
96 
98  public:
100  std::string alias( cfg.getParameter<std::string>( "@module_label" ) );
101  produces<reco::GsfElectronCollection>().setBranchAlias( alias + "GsfElectrons" );
102  produces<reco::GsfElectronCoreCollection>().setBranchAlias( alias + "GsfElectronCores" );
103  produces<reco::SuperClusterCollection>().setBranchAlias( alias + "SuperClusters" );
104  produces<reco::GsfTrackCollection>().setBranchAlias( alias + "GsfTracks" );
105  produces<reco::GsfTrackExtraCollection>().setBranchAlias( alias + "GsfTrackExtras" );
106  produces<reco::TrackExtraCollection>().setBranchAlias( alias + "TrackExtras" );
107  produces<TrackingRecHitCollection>().setBranchAlias( alias + "RecHits" );
108  }
109  };
110 
111  template<>
115  };
116 }
117 
118 #endif
edm::Ref< GsfTrackCollection > GsfTrackRef
persistent reference to a GsfTrack
Definition: GsfTrackFwd.h:13
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
std::auto_ptr< reco::GsfTrackCollection > selTracks_
edm::Ref< GsfElectronCoreCollection > GsfElectronCoreRef
void setGsfExtra(const GsfTrackExtraRef &ref)
set reference to GSF &quot;extra&quot; object
Definition: GsfTrack.h:29
std::vector< GsfTrackExtra > GsfTrackExtraCollection
collection of GsfTrackExtra objects
bool innerOk() const
return true if the innermost hit is valid
Definition: Track.h:40
edm::Ref< TrackExtraCollection > TrackExtraRef
persistent reference to a TrackExtra
Definition: TrackExtraFwd.h:13
edm::Ptr< CaloCluster > CaloClusterPtr
edm::OrphanHandle< reco::GsfElectronCollection > put(edm::Event &evt)
std::auto_ptr< reco::TrackExtraCollection > selTrackExtras_
const math::XYZPoint & outerPosition() const
position of the outermost hit
Definition: Track.h:47
void cloneAndStore(const I &begin, const I &end, edm::Event &evt)
edm::Ref< SuperClusterCollection > SuperClusterRef
reference to an object in a collection of SuperCluster objects
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
const math::XYZPoint & innerPosition() const
position of the innermost hit
Definition: Track.h:42
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:250
std::auto_ptr< reco::GsfElectronCollection > selElectrons_
edm::RefToBase< reco::Track > TrackBaseRef
persistent reference to a Track, using views
Definition: TrackFwd.h:22
std::auto_ptr< reco::GsfTrackExtraCollection > selGsfTrackExtras_
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
edm::Ref< TrackingRecHitCollection > TrackingRecHitRef
persistent reference to a TrackingRecHit
std::auto_ptr< reco::SuperClusterCollection > selSuperClusters_
virtual SuperClusterRef superCluster() const
reference to a SuperCluster
Definition: GsfElectron.h:168
CovarianceMatrix outerStateCovariance() const
outermost trajectory state curvilinear errors
Definition: Track.h:51
std::vector< GsfElectronCore > GsfElectronCoreCollection
std::vector< GsfTrack > GsfTrackCollection
collection of GsfTracks
Definition: GsfTrackFwd.h:9
unsigned int outerDetId() const
DetId of the detector on which surface the outermost state is located.
Definition: Track.h:59
const std::complex< double > I
Definition: I.h:8
edm::RefVector< GsfTrackCollection > GsfTrackRefVector
vector of reference to GsfTrack in the same collection
Definition: GsfTrackFwd.h:17
#define end
Definition: vmac.h:38
trackingRecHit_iterator recHitsBegin() const
Iterator to first hit on the track.
Definition: Track.h:63
GsfElectronCollectionStoreManager(const edm::Handle< reco::GsfElectronCollection > &)
edm::Ref< GsfTrackExtraCollection > GsfTrackExtraRef
persistent reference to a GsfTrackExtra
std::auto_ptr< TrackingRecHitCollection > selHits_
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:9
void setExtra(const TrackExtraRef &ref)
set reference to &quot;extra&quot; object
Definition: Track.h:95
const GsfTrackExtraRef & gsfExtra() const
reference to &quot;extra&quot; object
Definition: GsfTrack.h:31
const math::XYZVector & outerMomentum() const
momentum vector at the outermost hit position
Definition: Track.h:49
bool outerOk() const
return true if the outermost hit is valid
Definition: Track.h:38
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
edm::Ref< TrackCollection > TrackRef
persistent reference to a Track
Definition: TrackFwd.h:14
CovarianceMatrix innerStateCovariance() const
innermost trajectory state curvilinear errors
Definition: Track.h:53
void add(const TrackingRecHitRef &r)
add a reference to a RecHit
virtual GsfElectronCoreRef core() const
Definition: GsfElectron.cc:8
#define begin
Definition: vmac.h:31
GsfElectronSelectorBase(const edm::ParameterSet &cfg)
const math::XYZVector & innerMomentum() const
momentum vector at the innermost hit position
Definition: Track.h:45
PropagationDirection seedDirection() const
direction of how the hits were sorted in the original seed
Definition: Track.h:105
unsigned int innerDetId() const
DetId of the detector on which surface the innermost state is located.
Definition: Track.h:61
std::auto_ptr< reco::GsfElectronCoreCollection > selElectronCores_
virtual GsfTrackRef gsfTrack() const
reference to a GsfTrack
Definition: GsfElectron.h:169
trackingRecHit_iterator recHitsEnd() const
Iterator to last hit on the track.
Definition: Track.h:65