CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes
helper::GsfElectronCollectionStoreManager Struct Reference

#include <GsfElectronSelector.h>

Public Types

typedef reco::GsfElectronCollection collection
 

Public Member Functions

template<typename I >
void cloneAndStore (const I &begin, const I &end, edm::Event &evt)
 
 GsfElectronCollectionStoreManager (const edm::Handle< reco::GsfElectronCollection > &)
 
edm::OrphanHandle
< reco::GsfElectronCollection
put (edm::Event &evt)
 
size_t size () const
 

Private Attributes

std::auto_ptr
< reco::GsfElectronCoreCollection
selElectronCores_
 
std::auto_ptr
< reco::GsfElectronCollection
selElectrons_
 
std::auto_ptr
< reco::GsfTrackExtraCollection
selGsfTrackExtras_
 
std::auto_ptr
< TrackingRecHitCollection
selHits_
 
std::auto_ptr
< reco::SuperClusterCollection
selSuperClusters_
 
std::auto_ptr
< reco::TrackExtraCollection
selTrackExtras_
 
std::auto_ptr
< reco::GsfTrackCollection
selTracks_
 

Detailed Description

Definition at line 25 of file GsfElectronSelector.h.

Member Typedef Documentation

Definition at line 26 of file GsfElectronSelector.h.

Constructor & Destructor Documentation

helper::GsfElectronCollectionStoreManager::GsfElectronCollectionStoreManager ( const edm::Handle< reco::GsfElectronCollection > &  )
inline

Definition at line 27 of file GsfElectronSelector.h.

27  :
35  }
std::auto_ptr< reco::GsfTrackCollection > selTracks_
std::vector< GsfTrackExtra > GsfTrackExtraCollection
collection of GsfTrackExtra objects
std::auto_ptr< reco::TrackExtraCollection > selTrackExtras_
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
std::auto_ptr< reco::GsfElectronCollection > selElectrons_
std::auto_ptr< reco::GsfTrackExtraCollection > selGsfTrackExtras_
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
std::auto_ptr< reco::SuperClusterCollection > selSuperClusters_
std::vector< GsfElectronCore > GsfElectronCoreCollection
std::vector< GsfTrack > GsfTrackCollection
collection of GsfTracks
Definition: GsfTrackFwd.h:9
std::auto_ptr< TrackingRecHitCollection > selHits_
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:11
std::auto_ptr< reco::GsfElectronCoreCollection > selElectronCores_

Member Function Documentation

template<typename I >
void helper::GsfElectronCollectionStoreManager::cloneAndStore ( const I &  begin,
const I &  end,
edm::Event evt 
)
inline

Definition at line 37 of file GsfElectronSelector.h.

References reco::GsfElectron::core(), end, reco::GsfTrack::gsfExtra(), reco::GsfElectron::gsfTrack(), Exhume::I, i, customizeTrackingMonitorSeedNumber::idx, reco::Track::innerDetId(), reco::Track::innerMomentum(), reco::Track::innerOk(), reco::Track::innerPosition(), reco::Track::innerStateCovariance(), edm::Ref< C, T, F >::isNonnull(), reco::Track::outerDetId(), reco::Track::outerMomentum(), reco::Track::outerOk(), reco::Track::outerPosition(), reco::Track::outerStateCovariance(), reco::Track::recHitsBegin(), reco::Track::recHitsEnd(), dt_dqm_sourceclient_common_cff::reco, reco::Track::seedDirection(), selElectronCores_, selElectrons_, selGsfTrackExtras_, selHits_, selSuperClusters_, selTrackExtras_, selTracks_, reco::Track::setExtra(), reco::GsfTrack::setGsfExtra(), reco::TrackExtraBase::setHits(), and reco::GsfElectron::superCluster().

37  {
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  unsigned int nHitsToAdd = 0;
66  for( trackingRecHit_iterator hit = trk.recHitsBegin(); hit != trk.recHitsEnd(); ++ hit ) {
67  selHits_->push_back( (*hit)->clone() );
68  ++nHitsToAdd;
69  }
70  tx.setHits( rHits, hidx, nHitsToAdd );
71  hidx += nHitsToAdd;
72  trk.setGsfExtra( GsfTrackExtraRef( rGsfTrackExtras, tidx ) );
73  trk.setExtra( TrackExtraRef( rTrackExtras, tidx ++ ) );
74  }
75  }
76  }
edm::Ref< GsfTrackCollection > GsfTrackRef
persistent reference to a GsfTrack
Definition: GsfTrackFwd.h:13
int i
Definition: DBlmapReader.cc:9
std::auto_ptr< reco::GsfTrackCollection > selTracks_
edm::Ref< GsfElectronCoreCollection > GsfElectronCoreRef
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:252
void setGsfExtra(const GsfTrackExtraRef &ref)
set reference to GSF &quot;extra&quot; object
Definition: GsfTrack.h:30
void setHits(TrackingRecHitRefProd const &prod, unsigned firstH, unsigned int nH)
bool innerOk() const
return true if the innermost hit is valid
Definition: Track.h:50
edm::Ref< TrackExtraCollection > TrackExtraRef
persistent reference to a TrackExtra
Definition: TrackExtraFwd.h:17
edm::Ptr< CaloCluster > CaloClusterPtr
std::auto_ptr< reco::TrackExtraCollection > selTrackExtras_
const math::XYZPoint & outerPosition() const
position of the outermost hit
Definition: Track.h:65
edm::Ref< SuperClusterCollection > SuperClusterRef
reference to an object in a collection of SuperCluster objects
const math::XYZPoint & innerPosition() const
position of the innermost hit
Definition: Track.h:55
std::auto_ptr< reco::GsfElectronCollection > selElectrons_
edm::RefToBase< reco::Track > TrackBaseRef
persistent reference to a Track, using views
Definition: TrackFwd.h:32
std::auto_ptr< reco::GsfTrackExtraCollection > selGsfTrackExtras_
std::auto_ptr< reco::SuperClusterCollection > selSuperClusters_
virtual SuperClusterRef superCluster() const
reference to a SuperCluster
Definition: GsfElectron.h:182
CovarianceMatrix outerStateCovariance() const
outermost trajectory state curvilinear errors
Definition: Track.h:75
unsigned int outerDetId() const
DetId of the detector on which surface the outermost state is located.
Definition: Track.h:94
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:37
trackingRecHit_iterator recHitsBegin() const
Iterator to first hit on the track.
Definition: Track.h:104
edm::Ref< GsfTrackExtraCollection > GsfTrackExtraRef
persistent reference to a GsfTrackExtra
std::auto_ptr< TrackingRecHitCollection > selHits_
void setExtra(const TrackExtraRef &ref)
set reference to &quot;extra&quot; object
Definition: Track.h:184
const GsfTrackExtraRef & gsfExtra() const
reference to &quot;extra&quot; object
Definition: GsfTrack.h:32
const math::XYZVector & outerMomentum() const
momentum vector at the outermost hit position
Definition: Track.h:70
bool outerOk() const
return true if the outermost hit is valid
Definition: Track.h:45
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
edm::Ref< TrackCollection > TrackRef
persistent reference to a Track
Definition: TrackFwd.h:20
CovarianceMatrix innerStateCovariance() const
innermost trajectory state curvilinear errors
Definition: Track.h:80
virtual GsfElectronCoreRef core() const
Definition: GsfElectron.cc:8
#define begin
Definition: vmac.h:30
const math::XYZVector & innerMomentum() const
momentum vector at the innermost hit position
Definition: Track.h:60
PropagationDirection seedDirection() const
direction of how the hits were sorted in the original seed
Definition: Track.h:204
unsigned int innerDetId() const
DetId of the detector on which surface the innermost state is located.
Definition: Track.h:99
std::auto_ptr< reco::GsfElectronCoreCollection > selElectronCores_
TrackingRecHitCollection::base::const_iterator trackingRecHit_iterator
iterator over a vector of reference to TrackingRecHit in the same collection
virtual GsfTrackRef gsfTrack() const
reference to a GsfTrack
Definition: GsfElectron.h:183
trackingRecHit_iterator recHitsEnd() const
Iterator to last hit on the track.
Definition: Track.h:109
edm::OrphanHandle<reco::GsfElectronCollection> helper::GsfElectronCollectionStoreManager::put ( edm::Event evt)
inline

Definition at line 78 of file GsfElectronSelector.h.

References h, edm::Event::put(), selElectronCores_, selElectrons_, selGsfTrackExtras_, selHits_, selSuperClusters_, selTrackExtras_, and selTracks_.

78  {
80  evt.put( selElectronCores_ );
81  evt.put( selSuperClusters_ );
82  evt.put( selTracks_ );
83  evt.put( selTrackExtras_ );
84  evt.put( selGsfTrackExtras_ );
85  evt.put( selHits_ );
86  return h;
87  }
std::auto_ptr< reco::GsfTrackCollection > selTracks_
std::auto_ptr< reco::TrackExtraCollection > selTrackExtras_
std::auto_ptr< reco::GsfElectronCollection > selElectrons_
std::auto_ptr< reco::GsfTrackExtraCollection > selGsfTrackExtras_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
std::auto_ptr< reco::SuperClusterCollection > selSuperClusters_
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
std::auto_ptr< TrackingRecHitCollection > selHits_
std::auto_ptr< reco::GsfElectronCoreCollection > selElectronCores_
size_t helper::GsfElectronCollectionStoreManager::size ( void  ) const
inline

Definition at line 89 of file GsfElectronSelector.h.

References selElectrons_.

89 { return selElectrons_->size(); }
std::auto_ptr< reco::GsfElectronCollection > selElectrons_

Member Data Documentation

std::auto_ptr<reco::GsfElectronCoreCollection> helper::GsfElectronCollectionStoreManager::selElectronCores_
private

Definition at line 92 of file GsfElectronSelector.h.

Referenced by cloneAndStore(), and put().

std::auto_ptr<reco::GsfElectronCollection> helper::GsfElectronCollectionStoreManager::selElectrons_
private

Definition at line 91 of file GsfElectronSelector.h.

Referenced by cloneAndStore(), put(), and size().

std::auto_ptr<reco::GsfTrackExtraCollection> helper::GsfElectronCollectionStoreManager::selGsfTrackExtras_
private

Definition at line 96 of file GsfElectronSelector.h.

Referenced by cloneAndStore(), and put().

std::auto_ptr<TrackingRecHitCollection> helper::GsfElectronCollectionStoreManager::selHits_
private

Definition at line 97 of file GsfElectronSelector.h.

Referenced by cloneAndStore(), and put().

std::auto_ptr<reco::SuperClusterCollection> helper::GsfElectronCollectionStoreManager::selSuperClusters_
private

Definition at line 93 of file GsfElectronSelector.h.

Referenced by cloneAndStore(), and put().

std::auto_ptr<reco::TrackExtraCollection> helper::GsfElectronCollectionStoreManager::selTrackExtras_
private

Definition at line 95 of file GsfElectronSelector.h.

Referenced by cloneAndStore(), and put().

std::auto_ptr<reco::GsfTrackCollection> helper::GsfElectronCollectionStoreManager::selTracks_
private

Definition at line 94 of file GsfElectronSelector.h.

Referenced by cloneAndStore(), and put().