CMS 3D CMS Logo

Classes | Functions
ListIds.cc File Reference
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESTransientHandle.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "FWCore/ParameterSet/interface/types.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/Math/interface/Vector3D.h"
#include "DetectorDescription/Core/interface/DDFilteredView.h"
#include "DetectorDescription/Core/interface/DDCompactView.h"
#include "DetectorDescription/Core/interface/DDMaterial.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "Geometry/TrackerNumberingBuilder/interface/CmsTrackerStringToEnum.h"
#include "Geometry/TrackerNumberingBuilder/interface/GeometricDet.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
#include "FWCore/PluginManager/interface/ModuleDef.h"
#include "FWCore/Framework/interface/MakerMacros.h"

Go to the source code of this file.

Classes

class  ListIds
 

Functions

static std::string dddGetString (const std::string &s, const DDFilteredView &view)
 
static bool dddGetStringRaw (const DDFilteredView &view, const std::string &name, std::string &value)
 
static std::ostream & operator<< (std::ostream &out, const math::XYZVector &v)
 
static const edm::ParameterSetDescriptionFillerPluginFactory::PMaker< edm::ParameterSetDescriptionFiller< ListIds > > s_filler_0__LINE__ ("ListIds")
 
static const edm::MakerPluginFactory ::PMaker< edm::WorkerMaker< ListIds > > s_maker__LINE__ ("ListIds")
 

Function Documentation

◆ dddGetString()

static std::string dddGetString ( const std::string &  s,
const DDFilteredView view 
)
inlinestatic

Definition at line 55 of file ListIds.cc.

References dddGetStringRaw(), alignCSCRings::s, AlCaHLTBitMon_QueryRunRegistry::string, and relativeConstraints::value.

Referenced by ListIds::analyze().

55  {
57  if (dddGetStringRaw(view, s, value))
58  return value;
59  else
60  return std::string();
61 }
static bool dddGetStringRaw(const DDFilteredView &view, const std::string &name, std::string &value)
Definition: ListIds.cc:27
Definition: value.py:1

◆ dddGetStringRaw()

static bool dddGetStringRaw ( const DDFilteredView view,
const std::string &  name,
std::string &  value 
)
static

Definition at line 27 of file ListIds.cc.

References DDfetch(), ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, Skims_PA_cff::name, and mps_fire::result.

Referenced by dddGetString().

27  {
29  std::vector<const DDsvalues_type *> result;
30  view.specificsV(result);
31  for (std::vector<const DDsvalues_type *>::iterator it = result.begin(); it != result.end(); ++it) {
32  if (DDfetch(*it, parameter)) {
33  if (parameter.strings().size() == 1) {
34  value = parameter.strings().front();
35  return true;
36  } else {
37  return false;
38  }
39  }
40  }
41  return false;
42 }
bool DDfetch(const DDsvalues_type *, DDValue &)
helper for retrieving DDValues from DDsvalues_type *.
Definition: DDsvalues.cc:79
Definition: value.py:1

◆ operator<<()

static std::ostream& operator<< ( std::ostream &  out,
const math::XYZVector v 
)
inlinestatic

Definition at line 63 of file ListIds.cc.

References MillePedeFileConverter_cfg::out, and findQualityFiles::v.

63  {
64  return out << "(" << v.rho() << ", " << v.z() << ", " << v.phi() << ")";
65 }

◆ s_filler_0__LINE__()

static const edm::ParameterSetDescriptionFillerPluginFactory::PMaker<edm::ParameterSetDescriptionFiller< ListIds > > s_filler_0__LINE__ ( "ListIds"  )
static

◆ s_maker__LINE__()

static const edm::MakerPluginFactory ::PMaker< edm::WorkerMaker< ListIds > > s_maker__LINE__ ( "ListIds"  )
static