CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
ListIds.cc File Reference
#include <string>
#include <vector>
#include <iostream>
#include "FWCore/Framework/interface/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESHandle.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 double dddGetDouble (const std::string &s, const DDFilteredView &view)
 
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
edm::ParameterSetDescriptionFillerPluginFactory::PMaker
< edm::ParameterSetDescriptionFiller
< ListIds > > 
s_filler__LINE__ ("ListIds")
 
static
edm::MakerPluginFactory::PMaker
< edm::WorkerMaker< ListIds > > 
s_maker__LINE__ ("ListIds")
 

Function Documentation

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

Definition at line 46 of file ListIds.cc.

References dddGetStringRaw(), and relativeConstraints::value.

46  {
47  std::string value;
48  if (dddGetStringRaw(view, s, value))
49  return double(::atof(value.c_str()));
50  else
51  return NAN;
52 }
static bool dddGetStringRaw(const DDFilteredView &view, const std::string &name, std::string &value)
Definition: ListIds.cc:28
static std::string dddGetString ( const std::string &  s,
const DDFilteredView view 
)
inlinestatic

Definition at line 55 of file ListIds.cc.

References dddGetStringRaw(), and relativeConstraints::value.

Referenced by ListIds::analyze().

55  {
56  std::string value;
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:28
static bool dddGetStringRaw ( const DDFilteredView view,
const std::string &  name,
std::string &  value 
)
static

Definition at line 28 of file ListIds.cc.

References DDfetch(), query::result, DDFilteredView::specificsV(), and DDValue::strings().

Referenced by dddGetDouble(), and dddGetString().

28  {
30  std::vector<const DDsvalues_type *> result;
31  view.specificsV(result);
32  for (std::vector<const DDsvalues_type *>::iterator it = result.begin(); it != result.end(); ++it) {
33  if (DDfetch(*it,parameter)) {
34  if (parameter.strings().size() == 1) {
35  value = parameter.strings().front();
36  return true;
37  } else {
38  return false;
39  }
40  }
41  }
42  return false;
43 }
bool DDfetch(const DDsvalues_type *, DDValue &)
helper for retrieving DDValues from DDsvalues_type *.
Definition: DDsvalues.cc:102
tuple result
Definition: query.py:137
void specificsV(std::vector< const DDsvalues_type * > &result) const
User specific data attached to the current node.
static std::ostream& operator<< ( std::ostream &  out,
const math::XYZVector v 
)
inlinestatic

Definition at line 64 of file ListIds.cc.

64  {
65  return out << "(" << v.rho() << ", " << v.z() << ", " << v.phi() << ")";
66 }
tuple out
Definition: dbtoconf.py:99
mathSSE::Vec4< T > v
static edm::ParameterSetDescriptionFillerPluginFactory::PMaker<edm::ParameterSetDescriptionFiller< ListIds > > s_filler__LINE__ ( "ListIds"  )
static
static edm::MakerPluginFactory ::PMaker< edm::WorkerMaker< ListIds > > s_maker__LINE__ ( "ListIds"  )
static