CMS 3D CMS Logo

List of all members | Public Member Functions | Friends
DDSpecifics Class Reference

Interface to attach user specific data to nodes in the expanded-view. More...

#include <DDSpecifics.h>

Inheritance diagram for DDSpecifics:
DDBase< DDName, std::unique_ptr< DDI::Specific > >

Public Member Functions

 DDSpecifics ()
 Creates a uninitialized reference-object (see DDLogicalPart documentation for details on reference objects) More...
 
 DDSpecifics (const DDName &name)
 Creates a initialized reference-object or a reference to an allready defined specifcs. More...
 
 DDSpecifics (const DDName &name, const std::vector< std::string > &partSelections, const DDsvalues_type &svalues, bool doRegex=true)
 Creates a defined reference-object or replaces a already defined reference-object named name. More...
 
std::pair< bool, DDExpandedViewnode () const
 Calculates the geometrical history of a fully specified PartSelector. More...
 
const std::vector< DDPartSelection > & selection () const
 Gives a reference to the collection of part-selections. More...
 
const DDsvalues_typespecifics () const
 Reference to the user-data attached to all nodes selected by the selections-strings given through selection. More...
 
- Public Member Functions inherited from DDBase< DDName, std::unique_ptr< DDI::Specific > >
void create (const DDName &name, std::unique_ptr< DDI::Specific > vals)
 
void create (const DDName &name)
 
 DDBase ()
 
const DDNameddname () const
 
def_type isDefined () const
 
bool isValid () const
 true, if the wrapped pointer is valid More...
 
const DDNamename () const
 
 operator bool () const
 
bool operator< (const DDBase &b) const
 
bool operator== (const DDBase &b) const
 
bool operator> (const DDBase &b) const
 
const DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference rep () const
 
DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference rep ()
 
std::string toString () const
 
const DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference val () const
 
const DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference val ()
 
virtual ~DDBase ()
 

Friends

std::ostream & operator<< (std::ostream &, const DDSpecifics &)
 

Additional Inherited Members

- Public Types inherited from DDBase< DDName, std::unique_ptr< DDI::Specific > >
using def_type = std::pair< const DDName *, bool >
 
using StoreT = DDI::Singleton< DDI::Store< DDName, std::unique_ptr< DDI::Specific > > >
 
- Static Public Member Functions inherited from DDBase< DDName, std::unique_ptr< DDI::Specific > >
static auto begin ()
 
static auto end ()
 

Detailed Description

Interface to attach user specific data to nodes in the expanded-view.

used to attach specific (user defined) data to nodes in the expanded view.

DDSpecifics are lightweighted reference-objects. For further information concerning reference-objects refere to the documentation of DDLogicalPart.

Definition at line 41 of file DDSpecifics.h.

Constructor & Destructor Documentation

DDSpecifics::DDSpecifics ( )

Creates a uninitialized reference-object (see DDLogicalPart documentation for details on reference objects)

Definition at line 13 of file DDSpecifics.cc.

DDSpecifics::DDSpecifics ( const DDName name)

Creates a initialized reference-object or a reference to an allready defined specifcs.

If a DDSpecifics with name was already defined, this constructor creates a lightweighted reference-object to it. Otherwise a (default) initialized reference-object is registered named name. For further details concerning the usage of reference-objects refere to the documentation of DDLogicalPart.

Definition at line 17 of file DDSpecifics.cc.

References DDBase< DDName, std::unique_ptr< DDI::Specific > >::create().

19 {
20  create( name );
21 }
Definition: DDBase.h:10
void create(const DDName &name, std::unique_ptr< DDI::Specific > vals)
Definition: DDBase.h:121
DDSpecifics::DDSpecifics ( const DDName name,
const std::vector< std::string > &  partSelections,
const DDsvalues_type svalues,
bool  doRegex = true 
)

Creates a defined reference-object or replaces a already defined reference-object named name.

  • name unique name
  • partSelections collection of selection-strings which select expanded-nodes
  • svalues user data attached to nodes selected by partSelections

Syntax of the selection std::string

bla, bla, bla

Definition at line 23 of file DDSpecifics.cc.

References DDBase< DDName, std::unique_ptr< DDI::Specific > >::create(), Exception, DDBase< DDName, std::unique_ptr< DDI::Specific > >::rep(), and findQualityFiles::v.

28 {
29  create( name, std::make_unique<Specific>( partSelections, svalues, doRegex ));
30  std::vector<std::pair<DDLogicalPart,std::pair<const DDPartSelection*, const DDsvalues_type*> > > v;
31  rep().updateLogicalPart(v);
32  for( auto& it : v ) {
33  if( it.first.isDefined().second ) {
34  it.first.addSpecifics( it.second );
35  }
36  else {
37  throw cms::Exception("DDException") << "Definition of LogicalPart missing! name="
38  << it.first.ddname().fullname();
39  }
40  }
41 }
Definition: DDBase.h:10
const DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference rep() const
Definition: DDBase.h:80
void create(const DDName &name, std::unique_ptr< DDI::Specific > vals)
Definition: DDBase.h:121

Member Function Documentation

std::pair< bool, DDExpandedView > DDSpecifics::node ( ) const

Calculates the geometrical history of a fully specified PartSelector.

node() will only work, if

  • there is only one PartSelection std::string
  • the PartSelection std::string specifies exactly one full path concatenating always direct children including their copy-number and will return (true,const DDGeoHistory&) if the std::string matches an expanded-part in the ExpandedView, else it will return (false, xxx), whereas xxx is a history which is not valid.

Definition at line 64 of file DDSpecifics.cc.

References DDBase< DDName, std::unique_ptr< DDI::Specific > >::rep().

65 {
66  return rep().node();
67 }
const DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference rep() const
Definition: DDBase.h:80
const std::vector< DDPartSelection > & DDSpecifics::selection ( ) const

Gives a reference to the collection of part-selections.

Definition at line 44 of file DDSpecifics.cc.

References DDBase< DDName, std::unique_ptr< DDI::Specific > >::rep().

Referenced by Vispa.Plugins.ConfigEditor.CodeTableView.CodeTableView::keyPressEvent(), trackingPlots.Iteration::modules(), Vispa.Views.AbstractView.AbstractView::restoreSelection(), and DDCoreToDDXMLOutput::specpar().

45 {
46  return rep().selection();
47 }
const DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference rep() const
Definition: DDBase.h:80
const DDsvalues_type & DDSpecifics::specifics ( void  ) const

Reference to the user-data attached to all nodes selected by the selections-strings given through selection.

Definition at line 50 of file DDSpecifics.cc.

References DDBase< DDName, std::unique_ptr< DDI::Specific > >::rep().

Referenced by DDCoreToDDXMLOutput::specpar().

51 {
52  return rep().specifics();
53 }
const DDI::rep_traits< DDName, std::unique_ptr< DDI::Specific > >::reference rep() const
Definition: DDBase.h:80

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const DDSpecifics sp 
)
friend

Definition at line 69 of file DDSpecifics.cc.

70 {
72  if (defined.first) {
73  os << *(defined.first) << " ";
74  if (defined.second) {
75  sp.rep().stream(os);
76  }
77  else {
78  os << "* specific not defined * ";
79  }
80  }
81  else {
82  os << "* specific not declared * ";
83  }
84  return os;
85 }
Definition: DDBase.h:10
def_type isDefined() const
Definition: DDBase.h:107
const DDI::rep_traits< N, C >::reference rep() const
Definition: DDBase.h:80
std::pair< const DDName *, bool > def_type
Definition: DDBase.h:66