File indexing completed on 2024-04-06 12:05:25
0001 #include "DetectorDescription/Core/interface/DDLogicalPart.h"
0002 #include "DetectorDescription/Core/interface/DDName.h"
0003 #include "DetectorDescription/Core/interface/DDRoot.h"
0004 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0005
0006 DDRoot::DDRoot() {}
0007
0008 DDRoot::~DDRoot() {}
0009
0010 void DDRoot::set(const DDName& name) { root_ = DDLogicalPart(name); }
0011
0012 void DDRoot::set(const DDLogicalPart& root) { root_ = root; }
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026 DDLogicalPart DDRoot::root() const { return root_; }