CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes
DDCompactView Class Reference

type of data representation of DDCompactView More...

#include <DDCompactView.h>

Public Types

typedef ::graph< DDLogicalPart,
DDPosData * > 
graph_type
 not used More...
 
typedef std::vector
< DDLogicalPart
logchild_type
 container-type of children of a given node in the compact-view More...
 
typedef std::pair
< DDLogicalPart, DDPosData * > 
pos_type
 pair ... More...
 
typedef std::vector< std::pair
< DDLogicalPart, DDPosData * > > 
poschildren_type
 container-type of pairs of children nodes and their relative position data of a given node in the compact-view More...
 
typedef graphwalker
< DDLogicalPart, DDPosData * > 
walker_type
 not used More...
 

Public Member Functions

 DDCompactView ()
 Creates a compact-view. More...
 
 DDCompactView (const DDLogicalPart &rootnodedata)
 EXPERIMENTAL! Creates a compact-view using a different root of the geometrical hierarchy More...
 
const graph_typegraph () const
 Provides read-only access to the data structure of the compact-view. More...
 
void lockdown ()
 
void position (const DDLogicalPart &self, const DDLogicalPart &parent, std::string copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=NULL)
 
void position (const DDLogicalPart &self, const DDLogicalPart &parent, int copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=NULL)
 
const DDLogicalPartroot () const
 returns the DDLogicalPart representing the root of the geometrical hierarchy More...
 
void setRoot (const DDLogicalPart &root)
 don't use : interface not stable .... More...
 
void swap (DDCompactView &)
 
walker_type walker () const
 dont't use ! Proper implementation missing ... More...
 
double weight (const DDLogicalPart &p) const
 Prototype version of calculating the weight of a detector component. More...
 
const DDPosDataworldPosition () const
 The absolute position of the world. More...
 
graph_typewriteableGraph ()
 
 ~DDCompactView ()
 

Private Attributes

DDI::Store< DDName,
DDI::LogicalPart * > 
lpStore_
 
DDI::Store< DDName,
DDI::Material * > 
matStore_
 
std::unique_ptr
< DDCompactViewImpl
rep_
 
DDI::Store< DDName,
DDRotationMatrix * > 
rotStore_
 
DDI::Store< DDName, DDI::Solid * > solidStore_
 
DDI::Store< DDName,
DDI::Specific * > 
specStore_
 
std::unique_ptr< DDPosDataworldpos_
 

Detailed Description

type of data representation of DDCompactView

Navigation through the compact view of the detector ...

Updated: Michael Case [ MEC ] 2010-02-11Compact representation of the geometrical detector hierarchy A DDCompactView represents the detector as an acyclic directed multigraph. The nodes are instances of DDLogicalPart while the edges are pointers to DDPosData. Edges are directed from parent-node to child-node. Edges represented by DDPosData are the relative translation and rotation accompanied by a copy-number of the child-node towards the parent-node.

One node is explicitly marked as the root node. It is the DDLogicalPart which defines the base coordinate system for the detector. All subdetectors are directly or inderectly positioned inside the root-node.

Example:

The figureshows a compact-view graph consisting of 16 DDLogicalParts interconnected by 20 edges represented by pointers to DDPosData.

compact-view.gif

The compact-view also serves as base for calculating nodes in the expanded view. Paths through the compact-view can be viewed as nodes in the expanded-view (expansion of an acyclic directed multigraph into a tree). In the figure there are 5 different paths from CMS to Module2 (e.g. CMS-Pos1->Ecal-Pos4->EEndcap-Pos21->Module2) thus there will be 5 nodes of Module2 in the expanded view.

MEC: There has been a re-purposing of the DDCompactView to not only hold the representation described above (in detail this is the DDCompactViewImpl) but also own the memory of the stores refered to by the graph.

DDCompactView now owns the DDMaterial, DDSpecific, DDLogicalPart, DDRotation, DDSolid and etc. Removal of the global one-and-only stores, methods and details such as DDRoot will mean that all of these will be accessed via the DDCompactView.

Definition at line 76 of file DDCompactView.h.

Member Typedef Documentation

not used

type of representation of the compact-view (acyclic directed multigraph) Nodes are instances of DDLogicalPart, edges are pointers to instances of DDPosData

Definition at line 98 of file DDCompactView.h.

container-type of children of a given node in the compact-view

Definition at line 81 of file DDCompactView.h.

pair ...

Definition at line 87 of file DDCompactView.h.

typedef std::vector< std::pair<DDLogicalPart,DDPosData*> > DDCompactView::poschildren_type

container-type of pairs of children nodes and their relative position data of a given node in the compact-view

Definition at line 84 of file DDCompactView.h.

not used

Definition at line 91 of file DDCompactView.h.

Constructor & Destructor Documentation

DDCompactView::DDCompactView ( )
explicit

Creates a compact-view.

Definition at line 138 of file DDCompactView.cc.

139  : rep_(new DDCompactViewImpl),
141 { }
Relative position of a child-volume inside a parent-volume.
Definition: DDPosData.h:13
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:66
std::unique_ptr< DDPosData > worldpos_
std::unique_ptr< DDCompactViewImpl > rep_
DDCompactView::DDCompactView ( const DDLogicalPart rootnodedata)
explicit

EXPERIMENTAL! Creates a compact-view using a different root of the geometrical hierarchy

Compact-views can be created only after an appropriate geometrical hierarchy has been defined using DDpos().

Further it is assumed that the DDLogicalPart defining the root of the geometrical hierarchy has been defined using DDRootDef - singleton. It will be extracted from this singleton using DDRootDef::instance().root()!

The first time this constructor gets called, the internal graph representation is build up. Subsequent calls will return immidiately providing access to the already built up compact-view representation.

Currently the only usefull methods are DDCompactView::graph(), DDCompactView::root() !

Definition at line 33 of file DDCompactView.cc.

References DDI::Singleton< I >::instance().

34  : rep_( new DDCompactViewImpl( rootnodedata )),
36 {
37  // 2010-01-27 I am leaving this here so that we are sure the global stores
38  // are open when a new DDCompactView is being made. Eventually I want to
39  // get rid of the need for this somehow? think about it...
40  DDMaterial::StoreT::instance().setReadOnly(false);
41  DDSolid::StoreT::instance().setReadOnly(false);
42  DDLogicalPart::StoreT::instance().setReadOnly(false);
43  DDSpecifics::StoreT::instance().setReadOnly(false);
44  DDRotation::StoreT::instance().setReadOnly(false);
45 }
Relative position of a child-volume inside a parent-volume.
Definition: DDPosData.h:13
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > DDTranslation
Definition: DDTranslation.h:7
Represents a uniquely identifyable rotation matrix.
Definition: DDTransform.h:66
static value_type & instance()
std::unique_ptr< DDPosData > worldpos_
std::unique_ptr< DDCompactViewImpl > rep_
DDCompactView::~DDCompactView ( )

Definition at line 47 of file DDCompactView.cc.

48 {}

Member Function Documentation

const DDCompactView::graph_type & DDCompactView::graph ( ) const

Provides read-only access to the data structure of the compact-view.

The compact-view is kept in an acyclic directed multigraph represented by an instance of class Graph<DDLogicalPart, DDPosData*). Graph provides methods for navigating its content.

Definition at line 55 of file DDCompactView.cc.

References rep_.

Referenced by cuy.FindIssue::__init__(), SolidsForOnline::beginRun(), DDG4Builder::BuildGeometry(), DDCheckAll(), DDCheckConnect(), ddstats(), GeometryInfoDump::dumpInfo(), DDErrorDetection::lp_cpv(), DDCompareCPV::operator()(), DDStreamer::pos_read(), and DDStreamer::pos_write().

56 {
57  return rep_->graph();
58 }
std::unique_ptr< DDCompactViewImpl > rep_
void DDCompactView::lockdown ( )

Definition at line 143 of file DDCompactView.cc.

References DDI::Singleton< I >::instance(), lpStore_, matStore_, rotStore_, solidStore_, and specStore_.

143  {
144  // at this point we should have a valid store of DDObjects and we will move these
145  // to the local storage area using swaps with the existing Singleton<Store...>'s
146  // 2010-01-27 memory patch
152 
153  // 2010-01-27 memory patch
154  // not sure this will stay, but for now we want to explicitely lock the global stores.
155  // lock the global stores.
156  DDMaterial::StoreT::instance().setReadOnly(false);
157  DDSolid::StoreT::instance().setReadOnly(false);
158  DDLogicalPart::StoreT::instance().setReadOnly(false);
159  DDSpecifics::StoreT::instance().setReadOnly(false);
160  DDRotation::StoreT::instance().setReadOnly(false);
161 
162 }
static value_type & instance()
DDI::Store< DDName, DDI::Specific * > specStore_
DDI::Store< DDName, DDI::Solid * > solidStore_
DDI::Store< DDName, DDRotationMatrix * > rotStore_
DDI::Store< DDName, DDI::LogicalPart * > lpStore_
DDI::Store< DDName, DDI::Material * > matStore_
void DDCompactView::position ( const DDLogicalPart self,
const DDLogicalPart parent,
std::string  copyno,
const DDTranslation trans,
const DDRotation rot,
const DDDivision div = NULL 
)

Definition at line 104 of file DDCompactView.cc.

Referenced by DDHCalBarrelAlgo::constructGeneralVolume(), DDHCalEndcapAlgo::constructGeneralVolume(), DDHCalBarrelAlgo::constructInsideDetectors(), DDHCalBarrelAlgo::constructInsideLayers(), DDHCalEndcapModuleAlgo::constructInsideModule(), DDHCalEndcapAlgo::constructInsideModule(), DDHCalEndcapModuleAlgo::constructInsideModule0(), DDHCalEndcapAlgo::constructInsideModule0(), DDHCalBarrelAlgo::constructInsideSector(), DDHCalEndcapAlgo::constructInsideSector(), DDHCalBarrelAlgo::constructMidLayer(), DDHCalEndcapModuleAlgo::constructScintLayer(), DDHCalEndcapAlgo::constructScintLayer(), DDHCalBarrelAlgo::constructSideLayer(), DDEcalPreshowerAlgo::doLadders(), DDEcalPreshowerAlgoTB::doLayers(), DDEcalPreshowerAlgo::doLayers(), DDTECModuleAlgo::doPos(), DDEcalPreshowerAlgoTB::doSens(), DDEcalPreshowerAlgo::doSens(), DDEcalPreshowerAlgoTB::doWedges(), DDEcalEndcapAlgo::EECreateSC(), DDEcalEndcapAlgo::EEPositionCRs(), DDLinear::execute(), DDAngular::execute(), DDTIDModulePosAlgo::execute(), DDTIDModuleAlgo::execute(), DDPixBarTPGStackLayerAlgo::execute(), DDTOBAxCableAlgo::execute(), DDPixBarStackLinear::execute(), DDPixBarStackLinearGap::execute(), DDTrackerLinear::execute(), DDBHMAngular::execute(), DDHCalForwardAlgo::execute(), DDTrackerXYZPosAlgo::execute(), DDGEMAngular::execute(), DDHCalTBCableAlgo::execute(), DDPixBarLayerUpgradeAlgoCoverage::execute(), DDHCalTBZposAlgo::execute(), DDHCalAngular::execute(), DDTOBRadCableAlgo::execute(), DDHCalTestBeamAlgo::execute(), DDPixBarStackTrigLayerAlgo::execute(), DDHCalXtalAlgo::execute(), DDTrackerLinearXY::execute(), DDTOBRodAlgo::execute(), DDTIBLayerAlgo_MTCC::execute(), DDTIBRadCableAlgo_MTCC::execute(), DDMuonAngular::execute(), DDPixBarLayerAlgo::execute(), DDPixBarLayerUpgradeAlgo::execute(), DDPixFwdDiskAlgo::execute(), DDTrackerZPosAlgo::execute(), DDTECCoolAlgo::execute(), DDTECOptoHybAlgo::execute(), DDPixBarStackLayerAlgo::execute(), DDTIBLayerAlgo::execute(), DDTECAxialCableAlgo::execute(), DDTECPhiAlgo::execute(), DDHCalLinearXY::execute(), DDTrackerPhiAltAlgo::execute(), DDTrackerPhiAlgo::execute(), DDTrackerAngularV1::execute(), DDTIDAxialCableAlgo::execute(), DDTrackerAngular::execute(), DDTIDRingAlgo::execute(), DDHCalFibreBundle::execute(), DDTECPhiAltAlgo::execute(), DDTECModuleAlgo::execute(), DDEcalAPDAlgo::execute(), DDTBH4Algo::execute(), DDDividedGeometryObject::execute(), DDEcalBarrelNewAlgo::execute(), DDEcalBarrelAlgo::execute(), DDEcalEndcapAlgo::execute(), DDPixFwdBlades::execute(), DDStreamer::pos_read(), DDLPosPart::processElement(), regressionTest_first(), DDEcalBarrelAlgo::web(), and DDEcalBarrelNewAlgo::web().

110 {
111  int cpno = atoi(copyno.c_str());
112  position(self,parent,cpno,trans,rot, div);
113 }
void position(const DDLogicalPart &self, const DDLogicalPart &parent, std::string copyno, const DDTranslation &trans, const DDRotation &rot, const DDDivision *div=NULL)
void DDCompactView::position ( const DDLogicalPart self,
const DDLogicalPart parent,
int  copyno,
const DDTranslation trans,
const DDRotation rot,
const DDDivision div = NULL 
)

Definition at line 115 of file DDCompactView.cc.

References rep_.

121 {
122  rep_->position( self, parent, copyno, trans, rot, div );
123 }
std::unique_ptr< DDCompactViewImpl > rep_
const DDLogicalPart & DDCompactView::root ( ) const

returns the DDLogicalPart representing the root of the geometrical hierarchy

Definition at line 65 of file DDCompactView.cc.

References rep_.

Referenced by DDG4Builder::BuildGeometry(), and DDCheckConnect().

66 {
67  return rep_->root();
68 }
std::unique_ptr< DDCompactViewImpl > rep_
void DDCompactView::setRoot ( const DDLogicalPart root)

don't use : interface not stable ....

Definition at line 129 of file DDCompactView.cc.

References rep_.

Referenced by DDLSAX2ConfigHandler::startElement().

130 {
131  rep_->setRoot(root);
132 }
std::unique_ptr< DDCompactViewImpl > rep_
void DDCompactView::swap ( DDCompactView repToSwap)

Definition at line 134 of file DDCompactView.cc.

References rep_.

134  {
135  rep_->swap ( *(repToSwap.rep_) );
136 }
std::unique_ptr< DDCompactViewImpl > rep_
DDCompactView::walker_type DDCompactView::walker ( ) const

dont't use ! Proper implementation missing ...

Definition at line 75 of file DDCompactView.cc.

References rep_.

Referenced by DDCheckConnect().

76 {
77  return rep_->walker();
78 }
std::unique_ptr< DDCompactViewImpl > rep_
double DDCompactView::weight ( const DDLogicalPart p) const

Prototype version of calculating the weight of a detector component.

Example:

// Fetch a compact-view
// Fetch the part you want to weigh
DDLogicalPart tracker(DDName("Tracker","tracker.xml"));
// Weigh it
edm::LogInfo ("DDCompactView") << "Tracker weight = "
<< view.weight(tracker) / kg
<< " kg" << std::endl;

The weight of all children is calculated as well.

Definition at line 99 of file DDCompactView.cc.

References rep_.

Referenced by cuy.ValElement::__init__(), cuy.additionElement::__init__(), cuy.superimposeElement::__init__(), and cuy.graphElement::__init__().

100 {
101  return rep_->weight(p);
102 }
std::unique_ptr< DDCompactViewImpl > rep_
const DDPosData * DDCompactView::worldPosition ( ) const

The absolute position of the world.

Definition at line 70 of file DDCompactView.cc.

References worldpos_.

71 {
72  return worldpos_.get();
73 }
std::unique_ptr< DDPosData > worldpos_
DDCompactView::graph_type & DDCompactView::writeableGraph ( )

Definition at line 60 of file DDCompactView.cc.

References rep_.

61 {
62  return const_cast<graph_type&>(rep_->graph());
63 }
std::unique_ptr< DDCompactViewImpl > rep_
::graph< DDLogicalPart, DDPosData * > graph_type
not used
Definition: DDCompactView.h:98

Member Data Documentation

DDI::Store<DDName, DDI::LogicalPart*> DDCompactView::lpStore_
private

Definition at line 162 of file DDCompactView.h.

Referenced by lockdown().

DDI::Store<DDName, DDI::Material*> DDCompactView::matStore_
private

Definition at line 160 of file DDCompactView.h.

Referenced by lockdown().

std::unique_ptr<DDCompactViewImpl> DDCompactView::rep_
private

Definition at line 155 of file DDCompactView.h.

Referenced by graph(), position(), root(), setRoot(), swap(), walker(), weight(), and writeableGraph().

DDI::Store<DDName, DDRotationMatrix*> DDCompactView::rotStore_
private

Definition at line 164 of file DDCompactView.h.

Referenced by lockdown().

DDI::Store<DDName, DDI::Solid*> DDCompactView::solidStore_
private

Definition at line 161 of file DDCompactView.h.

Referenced by lockdown().

DDI::Store<DDName, DDI::Specific*> DDCompactView::specStore_
private

Definition at line 163 of file DDCompactView.h.

Referenced by lockdown().

std::unique_ptr<DDPosData> DDCompactView::worldpos_
private

Definition at line 156 of file DDCompactView.h.

Referenced by worldPosition().