CMS 3D CMS Logo

List of all members | Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes
SeedingLayerSetsHits Class Reference

#include <SeedingLayerSetsHits.h>

Classes

class  const_iterator
 
class  SeedingLayer
 
class  SeedingLayerSet
 

Public Types

using ConstRecHitPointer = BaseTrackerRecHit const *
 
typedef unsigned int HitIndex
 
using HitPointer = mayown_ptr< BaseTrackerRecHit >
 
using Hits = std::vector< ConstRecHitPointer >
 
typedef unsigned short LayerIndex
 
typedef unsigned short LayerSetIndex
 
using OwnedHits = std::vector< HitPointer >
 
using TkHit = BaseTrackerRecHit
 
using TkHitRef = BaseTrackerRecHit const &
 

Public Member Functions

const_iterator begin () const
 
const_iterator cbegin () const
 
const_iterator cend () const
 
const_iterator end () const
 
unsigned short numberOfLayersInSet () const
 Get number of layers in each SeedingLayerSets. More...
 
SeedingLayerSetsHitsoperator= (SeedingLayerSetsHits const &)=delete
 
SeedingLayerSetsHitsoperator= (SeedingLayerSetsHits &&)=default
 
SeedingLayerSet operator[] (LayerSetIndex index) const
 Get the SeedingLayerSet at a given index. More...
 
void print () const
 
 SeedingLayerSetsHits ()
 
 SeedingLayerSetsHits (unsigned short nlayers, const std::vector< LayerSetIndex > *layerSetIndices, const std::vector< std::string > *layerNames, const std::vector< const DetLayer * > &layerDets)
 
 SeedingLayerSetsHits (SeedingLayerSetsHits const &)=delete
 
 SeedingLayerSetsHits (SeedingLayerSetsHits &&)=default
 
unsigned short size () const
 Get the number of SeedingLayerSets. More...
 
void swap (SeedingLayerSetsHits &other)
 
void swapHits (std::vector< HitIndex > &layerHitIndices, OwnedHits &hits)
 
 ~SeedingLayerSetsHits ()
 

Private Member Functions

Hits hits (LayerIndex layerIndex) const
 

Private Attributes

std::vector< const DetLayer * > layerDets_
 
std::vector< HitIndexlayerHitIndices_
 
const std::vector< std::string > * layerNames_
 
const std::vector< LayerSetIndex > * layerSetIndices_
 
unsigned short nlayers_
 Number of layers in a SeedingLayerSet. More...
 
OwnedHits rechits_
 

Detailed Description

Class to store TransientTrackingRecHits, names, and DetLayer pointers of each ctfseeding::SeedingLayer as they come from SeedingLayerSetsBuilder.

In contrast to ctfseeding::SeedingLayerSets, this class requires that all contained SeedingLayerSets have the same number of layers in each set.

This class was created in part for SeedingLayer getByToken migration, and in part as a performance improvement.

Definition at line 26 of file SeedingLayerSetsHits.h.

Member Typedef Documentation

Definition at line 33 of file SeedingLayerSetsHits.h.

typedef unsigned int SeedingLayerSetsHits::HitIndex

Definition at line 38 of file SeedingLayerSetsHits.h.

Definition at line 30 of file SeedingLayerSetsHits.h.

Definition at line 34 of file SeedingLayerSetsHits.h.

typedef unsigned short SeedingLayerSetsHits::LayerIndex

Definition at line 37 of file SeedingLayerSetsHits.h.

typedef unsigned short SeedingLayerSetsHits::LayerSetIndex

Definition at line 36 of file SeedingLayerSetsHits.h.

Definition at line 31 of file SeedingLayerSetsHits.h.

Definition at line 28 of file SeedingLayerSetsHits.h.

Definition at line 29 of file SeedingLayerSetsHits.h.

Constructor & Destructor Documentation

SeedingLayerSetsHits::SeedingLayerSetsHits ( )

Definition at line 9 of file SeedingLayerSetsHits.cc.

9 : nlayers_(0), layerSetIndices_(nullptr), layerNames_(nullptr) {}
const std::vector< LayerSetIndex > * layerSetIndices_
unsigned short nlayers_
Number of layers in a SeedingLayerSet.
const std::vector< std::string > * layerNames_
SeedingLayerSetsHits::SeedingLayerSetsHits ( unsigned short  nlayers,
const std::vector< LayerSetIndex > *  layerSetIndices,
const std::vector< std::string > *  layerNames,
const std::vector< const DetLayer * > &  layerDets 
)

Constructor.

Parameters
nlayersNumber of layers in each SeedingLayerSet
layerSetIndicesPointer to a vector holding the indices of layer sets (pointer to vector is stored)
layerNamesPointer to a vector holding the layer names (pointer to vector is stored)
layerDetsVector of pointers to layer DetLayer objects (vector is copied, i.e. DetLayer pointers are stored)

Definition at line 10 of file SeedingLayerSetsHits.cc.

13  :
15  layerSetIndices_(layerSetIndices),
16  layerNames_(layerNames),
17  layerDets_(layerDets)
18 {}
const std::vector< LayerSetIndex > * layerSetIndices_
std::vector< const DetLayer * > layerDets_
unsigned short nlayers_
Number of layers in a SeedingLayerSet.
const std::vector< std::string > * layerNames_
SeedingLayerSetsHits::~SeedingLayerSetsHits ( )

Definition at line 19 of file SeedingLayerSetsHits.cc.

19  {
20 // std::cout << "deleting eedingLayerSetsHits " << rechits_.size() << std::endl;
21 }
SeedingLayerSetsHits::SeedingLayerSetsHits ( SeedingLayerSetsHits const &  )
delete
SeedingLayerSetsHits::SeedingLayerSetsHits ( SeedingLayerSetsHits &&  )
default

Member Function Documentation

const_iterator SeedingLayerSetsHits::begin ( void  ) const
inline

Definition at line 210 of file SeedingLayerSetsHits.h.

References layerSetIndices_.

Referenced by SeedingLayerSetsHits::SeedingLayerSet::cbegin(), cbegin(), hits(), and operator[]().

210 { return const_iterator(this, layerSetIndices_->begin()); }
const std::vector< LayerSetIndex > * layerSetIndices_
const_iterator SeedingLayerSetsHits::cbegin ( ) const
inline

Definition at line 211 of file SeedingLayerSetsHits.h.

References begin().

211 { return begin(); }
const_iterator begin() const
const_iterator SeedingLayerSetsHits::cend ( ) const
inline

Definition at line 213 of file SeedingLayerSetsHits.h.

References end().

213 { return end(); }
const_iterator end() const
const_iterator SeedingLayerSetsHits::end ( void  ) const
inline

Definition at line 212 of file SeedingLayerSetsHits.h.

References layerSetIndices_.

Referenced by SeedingLayerSetsHits::SeedingLayerSet::cend(), cend(), hits(), and operator[]().

212 { return const_iterator(this, layerSetIndices_->end()); }
const std::vector< LayerSetIndex > * layerSetIndices_
SeedingLayerSetsHits::Hits SeedingLayerSetsHits::hits ( LayerIndex  layerIndex) const
private

Definition at line 30 of file SeedingLayerSetsHits.cc.

References begin(), end(), layerHitIndices_, AlCaHLTBitMon_ParallelJobs::p, rechits_, and create_public_lumi_plots::transform.

Referenced by ntupleDataFormat._TrackingParticleMatchAdaptor::bestMatchingTrackingParticle(), and SeedingLayerSetsHits::SeedingLayer::hits().

30  {
31  HitIndex begin = layerHitIndices_[layerIndex];
32  ++layerIndex;
33  HitIndex end = layerIndex < layerHitIndices_.size() ? layerHitIndices_[layerIndex] : rechits_.size();
34 
35  Hits ret;
36  ret.reserve(end-begin);
37  std::transform(rechits_.begin()+begin, rechits_.begin()+end, std::back_inserter(ret),[](HitPointer const &p){return p.get();});
38  return ret;
39 }
const_iterator end() const
const_iterator begin() const
mayown_ptr< BaseTrackerRecHit > HitPointer
std::vector< ConstRecHitPointer > Hits
std::vector< HitIndex > layerHitIndices_
unsigned short SeedingLayerSetsHits::numberOfLayersInSet ( ) const
inline
SeedingLayerSetsHits& SeedingLayerSetsHits::operator= ( SeedingLayerSetsHits const &  )
delete
SeedingLayerSetsHits& SeedingLayerSetsHits::operator= ( SeedingLayerSetsHits &&  )
default
SeedingLayerSet SeedingLayerSetsHits::operator[] ( LayerSetIndex  index) const
inline

Get the SeedingLayerSet at a given index.

Definition at line 203 of file SeedingLayerSetsHits.h.

References begin(), end(), SeedingLayerSetsHits::SeedingLayer::index(), layerSetIndices_, and nlayers_.

Referenced by print().

203  {
204  std::vector<LayerSetIndex>::const_iterator begin = layerSetIndices_->begin()+nlayers_*index;
205  std::vector<LayerSetIndex>::const_iterator end = begin+nlayers_;
206  return SeedingLayerSet(this, begin, end);
207  }
const_iterator end() const
const_iterator begin() const
const std::vector< LayerSetIndex > * layerSetIndices_
unsigned short nlayers_
Number of layers in a SeedingLayerSet.
void SeedingLayerSetsHits::print ( void  ) const

Definition at line 42 of file SeedingLayerSetsHits.cc.

References SeedingLayerSetsHits::SeedingLayer::hits(), SeedingLayerSetsHits::SeedingLayer::index(), LayerTriplets::layers(), LogDebug, SeedingLayerSetsHits::SeedingLayer::name(), numberOfLayersInSet(), operator[](), SeedingLayerSetsHits::SeedingLayerSet::size(), and size().

Referenced by swap().

42  {
43  std::stringstream ss;
44  ss << "SeedingLayerSetsHits with " << numberOfLayersInSet() << " layers in each LayerSets, LayerSets has " << size() << " items\n";
45  for(LayerSetIndex iLayers=0; iLayers<size(); ++iLayers) {
46  ss << " " << iLayers << ": ";
47  SeedingLayerSet layers = operator[](iLayers);
48  for(unsigned iLayer=0; iLayer<layers.size(); ++iLayer) {
49  SeedingLayer layer = layers[iLayer];
50  ss << layer.name() << " (" << layer.index() << ", nhits " << layer.hits().size() << ") ";
51  }
52  ss << "\n";
53  }
54  LogDebug("SeedingLayerSetsHits") << ss.str();
55 }
#define LogDebug(id)
unsigned short numberOfLayersInSet() const
Get number of layers in each SeedingLayerSets.
std::vector< LayerSetAndLayers > layers(const SeedingLayerSetsHits &sets)
Definition: LayerTriplets.cc:4
unsigned short LayerSetIndex
SeedingLayerSet operator[](LayerSetIndex index) const
Get the SeedingLayerSet at a given index.
unsigned short size() const
Get the number of SeedingLayerSets.
unsigned short SeedingLayerSetsHits::size ( void  ) const
inline
void SeedingLayerSetsHits::swap ( SeedingLayerSetsHits other)
inline

Definition at line 216 of file SeedingLayerSetsHits.h.

References SeedingLayerSetsHits::SeedingLayer::hits(), layerDets_, layerHitIndices_, layerNames_, layerSetIndices_, nlayers_, print(), rechits_, and std::swap().

216  {
217  std::swap(nlayers_, other.nlayers_);
221  layerDets_.swap(other.layerDets_);
222  rechits_.swap(other.rechits_);
223  }
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
const std::vector< LayerSetIndex > * layerSetIndices_
std::vector< HitIndex > layerHitIndices_
std::vector< const DetLayer * > layerDets_
unsigned short nlayers_
Number of layers in a SeedingLayerSet.
const std::vector< std::string > * layerNames_
void SeedingLayerSetsHits::swapHits ( std::vector< HitIndex > &  layerHitIndices,
OwnedHits hits 
)

Definition at line 25 of file SeedingLayerSetsHits.cc.

References layerHitIndices_, and rechits_.

25  {
26  layerHitIndices_.swap(layerHitIndices);
27  rechits_.swap(hits);
28 }
Hits hits(LayerIndex layerIndex) const
std::vector< HitIndex > layerHitIndices_

Member Data Documentation

std::vector<const DetLayer *> SeedingLayerSetsHits::layerDets_
private

Definition at line 243 of file SeedingLayerSetsHits.h.

Referenced by SeedingLayerSetsHits::SeedingLayer::detLayer(), and swap().

std::vector<HitIndex> SeedingLayerSetsHits::layerHitIndices_
private

Definition at line 241 of file SeedingLayerSetsHits.h.

Referenced by hits(), swap(), and swapHits().

const std::vector<std::string>* SeedingLayerSetsHits::layerNames_
private

Definition at line 242 of file SeedingLayerSetsHits.h.

Referenced by SeedingLayerSetsHits::SeedingLayer::name(), and swap().

const std::vector<LayerSetIndex>* SeedingLayerSetsHits::layerSetIndices_
private

Stores SeedingLayerSets as nlayers_ consecutive layer indices. Layer indices point to layerHitRanges_, layerNames_, and layerDets_. Hence layerSetIndices.size() == nlayers_*"number of layer sets"

Definition at line 238 of file SeedingLayerSetsHits.h.

Referenced by begin(), end(), operator[](), size(), and swap().

unsigned short SeedingLayerSetsHits::nlayers_
private
OwnedHits SeedingLayerSetsHits::rechits_
private

List of RecHits of all SeedingLayers. Hits of each layer are identified by the begin indices in layerHitIndices_.

Definition at line 249 of file SeedingLayerSetsHits.h.

Referenced by hits(), swap(), and swapHits().