CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Typedefs | Functions
DDsvalues.h File Reference
#include <algorithm>
#include <map>
#include <ostream>
#include <utility>
#include <vector>
#include "DetectorDescription/Core/interface/DDValue.h"

Go to the source code of this file.

Typedefs

using DDsvalues_Content_type = DDsvalues_type::value_type
 
using DDsvalues_type = std::vector< std::pair< unsigned int, DDValue > >
 

Functions

bool DDfetch (const DDsvalues_type *, DDValue &)
 helper for retrieving DDValues from DDsvalues_type *. More...
 
unsigned int DDfetch (const std::vector< const DDsvalues_type * > &sp, DDValue &toFetch, std::vector< DDValue > &result)
 helper for retrieving DDValues from a std::vector of (DDsvalues_type *). More...
 
DDsvalues_type::const_iterator find (DDsvalues_type::const_iterator begin, DDsvalues_type::const_iterator end, unsigned int id)
 
DDsvalues_type::const_iterator find (DDsvalues_type const &sv, unsigned int id)
 
void merge (DDsvalues_type &target, DDsvalues_type const &sv, bool sortit=true)
 
bool operator< (const DDsvalues_Content_type &lh, const DDsvalues_Content_type &rh)
 
std::ostream & operator<< (std::ostream &, const DDsvalues_type &)
 
std::ostream & operator<< (std::ostream &, const std::vector< const DDsvalues_type * > &)
 

Typedef Documentation

using DDsvalues_Content_type = DDsvalues_type::value_type

Definition at line 13 of file DDsvalues.h.

using DDsvalues_type = std::vector<std::pair<unsigned int, DDValue> >

Definition at line 12 of file DDsvalues.h.

Function Documentation

bool DDfetch ( const DDsvalues_type p,
DDValue v 
)

helper for retrieving DDValues from DDsvalues_type *.

Example:

std::vector<std::string> myFunction(const DDsvalues_type * svalptr, const std::string & name)
{
static std::vector<std::string> v; // empty std::vector, for zero result
DDValue val(name);
if (DDfetch(svalptr,val)) {
return val.std::strings();
} else {
return v;
}
}

Definition at line 79 of file DDsvalues.cc.

References spr::find(), and mps_fire::result.

Referenced by DDMapper< KeyType, ValueType >::all(), ME0GeometryParsFromDD::buildEtaPartition(), GEMGeometryParsFromDD::buildEtaPartition(), ME0GeometryBuilder::buildEtaPartition(), GEMGeometryBuilder::buildEtaPartition(), RPCGeometryBuilder::buildGeometry(), RPCGeometryParsFromDD::buildGeometry(), DTGeometryBuilderFromDDD::buildGeometry(), DTGeometryParsFromDD::buildGeometry(), dddGetStringRaw(), DDfetch(), FastTimeParametersFromDD::getDDDArray(), EcalSimParametersFromDD::getDDDArray(), HcalSimParametersFromDD::getDDDArray(), HGCalParametersFromDD::getDDDArray(), MaterialBudgetHcalHistos::getDDDArray(), MaterialBudgetHcalProducer::getDDDArray(), HGCalGeomParameters::getDDDArray(), HGCalParametersFromDD::getDDDValue(), DDG4Builder::getDouble(), MuonGeometryNumbering::getInt(), DDG4Builder::getInt(), CaloSimParametersFromDD::getNames(), MuonOffsetFromDD::getNumber(), CaloSimParametersFromDD::getNumbers(), ExtractStringFromDD< FilteredView >::getString(), ExtractStringFromDDD< FilteredView >::getString(), DDG4SensitiveConverter::getString(), EcalSimParametersFromDD::getStringArray(), DDMapper< KeyType, ValueType >::noSpecifics(), DDMapper< KeyType, ValueType >::toDouble(), and DDMapper< KeyType, ValueType >::toString().

79  {
80  bool result = false;
81  DDsvalues_type::const_iterator it = find(*p, v);
82  if (it != p->end()) {
83  result = true;
84  v = it->second;
85  }
86  return result;
87 }
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
tuple result
Definition: mps_fire.py:311
unsigned int DDfetch ( const std::vector< const DDsvalues_type * > &  sp,
DDValue toFetch,
std::vector< DDValue > &  result 
)

helper for retrieving DDValues from a std::vector of (DDsvalues_type *).

Definition at line 89 of file DDsvalues.cc.

References submitPVResolutionJobs::count, and DDfetch().

89  {
90  unsigned int count = 0;
91  for (const auto &it : sp) {
92  if (DDfetch(it, toFetch)) {
93  result.emplace_back(toFetch);
94  ++count;
95  }
96  }
97  return count;
98 }
bool DDfetch(const DDsvalues_type *, DDValue &)
helper for retrieving DDValues from DDsvalues_type *.
Definition: DDsvalues.cc:79
tuple result
Definition: mps_fire.py:311
DDsvalues_type::const_iterator find ( DDsvalues_type::const_iterator  begin,
DDsvalues_type::const_iterator  end,
unsigned int  id 
)
inline

Definition at line 19 of file DDsvalues.h.

References dataset::end, cuda_std::lower_bound(), and findQualityFiles::v.

21  {
22  static const DDValue dummy;
23  DDsvalues_Content_type v(id, dummy);
24  DDsvalues_type::const_iterator it = std::lower_bound(begin, end, v);
25  if (it != end && (*it).first == id)
26  return it;
27  return end;
28 }
DDsvalues_type::value_type DDsvalues_Content_type
Definition: DDsvalues.h:13
__host__ __device__ constexpr RandomIt lower_bound(RandomIt first, RandomIt last, const T &value, Compare comp={})
string end
Definition: dataset.py:937
DDsvalues_type::const_iterator find ( DDsvalues_type const &  sv,
unsigned int  id 
)
inline

Definition at line 30 of file DDsvalues.h.

References spr::find(), and gpuClustering::id.

30  {
31  return find(sv.begin(), sv.end(), id);
32 }
uint16_t *__restrict__ id
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
void merge ( DDsvalues_type target,
DDsvalues_type const &  sv,
bool  sortit = true 
)

Definition at line 5 of file DDsvalues.cc.

References spr::find(), and cuda_std::lower_bound().

5  {
6  if (target.empty()) {
7  target = sv;
8  return;
9  }
10  DDsvalues_type::const_iterator sit = sv.begin();
11  DDsvalues_type::const_iterator sed = sv.end();
12  // fast merge
13  if (target.back() < sv.front()) {
14  target.insert(target.end(), sit, sed);
15  return;
16  }
17  if (sv.back() < target.front()) {
18  target.insert(target.begin(), sit, sed);
19  return;
20  }
21  {
22  DDsvalues_type::iterator it = std::lower_bound(target.begin(), target.end(), sv.front());
23  if (it == std::lower_bound(target.begin(), target.end(), sv.back())) {
24  target.insert(it, sit, sed);
25  return;
26  }
27  }
28  // it nevers arrives here...
29  target.reserve(target.size() + sv.size());
30  DDsvalues_type::const_iterator ted = target.end();
31  for (; sit != sed; ++sit) {
32  DDsvalues_type::const_iterator it = find(target.begin(), ted, (*sit).first);
33  if (it != ted)
34  const_cast<DDsvalues_Content_type &>(*it).second = (*sit).second;
35  else
36  target.emplace_back(*sit);
37  }
38  if (sortit)
39  std::sort(target.begin(), target.end());
40 }
DDsvalues_type::value_type DDsvalues_Content_type
Definition: DDsvalues.h:13
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
__host__ __device__ constexpr RandomIt lower_bound(RandomIt first, RandomIt last, const T &value, Compare comp={})
bool operator< ( const DDsvalues_Content_type lh,
const DDsvalues_Content_type rh 
)
inline

Definition at line 15 of file DDsvalues.h.

15  {
16  return lh.first < rh.first;
17 }
bool int lh
Definition: SIMDVec.h:20
std::ostream& operator<< ( std::ostream &  ,
const DDsvalues_type  
)

Definition at line 42 of file DDsvalues.cc.

42  {
43  DDsvalues_type::const_iterator it = s.begin();
44  for (; it != s.end(); ++it) {
45  os << it->second;
46  /*
47  os << DDValue(it->first).name() << " = ";
48  for (unsigned int i=0; i<it->second.size(); ++i) {
49  os << it->second[i] << ' ';
50  }
51  os << std::endl;
52  */
53  }
54  return os;
55 }
std::ostream& operator<< ( std::ostream &  ,
const std::vector< const DDsvalues_type * > &   
)

Definition at line 57 of file DDsvalues.cc.

References mps_fire::i, and findQualityFiles::v.

57  {
58  for (const auto &i : v) {
59  os << *i; // << std::endl;
60  }
61 
62  return os;
63 }