From 1e78f64c167a0d6027591b495060aa2dc03e7671 Mon Sep 17 00:00:00 2001 From: Markus Frank <Markus.Frank@cern.ch> Date: Sat, 17 Jun 2017 02:15:52 +0200 Subject: [PATCH] Namespace re-organisation --- DDAlign/include/DDAlign/AlignmentsCalib.h | 2 +- DDAlign/include/DDAlign/GlobalAlignmentCache.h | 2 +- .../DDCond/ConditionsDependencyHandler.h | 2 +- DDCond/src/ConditionsDependencyHandler.cpp | 2 +- DDCond/src/plugins/ConditionsPlugins.cpp | 4 ++-- DDCond/src/plugins/ConditionsUserPool.cpp | 4 ++-- DDCore/include/DD4hep/AlignmentsNominalMap.h | 2 +- DDCore/include/DD4hep/ConditionsData.h | 2 +- DDCore/include/DD4hep/ConditionsMap.h | 2 +- DDCore/include/DD4hep/ConditionsPrinter.h | 2 +- DDCore/include/DD4hep/DD4hepUnits.h | 2 +- DDCore/include/DD4hep/DetElement.h | 4 ++-- DDCore/include/DD4hep/Fields.h | 4 ++-- DDCore/include/DD4hep/GeoHandler.h | 2 +- DDCore/include/DD4hep/InstanceCount.h | 2 +- DDCore/include/DD4hep/OpaqueData.h | 2 +- DDCore/include/DD4hep/Shapes.h | 18 +++++++++--------- DDCore/include/DD4hep/Volumes.h | 2 +- .../include/DD4hep/detail/AlignmentsInterna.h | 2 +- .../include/DD4hep/detail/ConditionsInterna.h | 2 +- DDCore/include/DD4hep/detail/DetectorInterna.h | 8 ++++---- DDCore/include/DD4hep/detail/Plugins.inl | 2 +- DDCore/include/XML/XMLElements.h | 2 +- DDCore/include/XML/tinyxml.h | 2 +- DDCore/src/DetElement.cpp | 2 +- DDCore/src/DetectorImp.cpp | 2 +- DDCore/src/DetectorImp.h | 2 +- DDCore/src/DetectorInterna.cpp | 6 +++--- DDCore/src/DetectorTools.cpp | 2 +- DDCore/src/ObjectExtensions.cpp | 2 +- DDCore/src/PluginTester.cpp | 2 +- DDCore/src/Shapes.cpp | 2 +- DDRec/include/DDRec/DetectorData.h | 2 +- .../Gaudi/Details/PluginServiceDetails.h | 2 +- cmake/Doxyfile.in | 2 +- 35 files changed, 52 insertions(+), 52 deletions(-) diff --git a/DDAlign/include/DDAlign/AlignmentsCalib.h b/DDAlign/include/DDAlign/AlignmentsCalib.h index dc91aee90..fac731056 100644 --- a/DDAlign/include/DDAlign/AlignmentsCalib.h +++ b/DDAlign/include/DDAlign/AlignmentsCalib.h @@ -49,7 +49,7 @@ namespace dd4hep { Detector& description; /// Reference to the alignment manager object ConditionsMap& slice; - /// detaill work stack of cached deltas + /// Internal work stack of cached deltas UsedConditions used; protected: diff --git a/DDAlign/include/DDAlign/GlobalAlignmentCache.h b/DDAlign/include/DDAlign/GlobalAlignmentCache.h index c7565bd72..fe4ac1d53 100644 --- a/DDAlign/include/DDAlign/GlobalAlignmentCache.h +++ b/DDAlign/include/DDAlign/GlobalAlignmentCache.h @@ -30,7 +30,7 @@ namespace dd4hep { /// Class caching all known alignment operations for one Detector instance. /** - * detaillly the instances are fragmented to subdetectors defined + * Internaly the instances are fragmented to subdetectors defined * by the next-to-top level detector elements. * * \author M.Frank diff --git a/DDCond/include/DDCond/ConditionsDependencyHandler.h b/DDCond/include/DDCond/ConditionsDependencyHandler.h index 4f1bae60f..984cae234 100644 --- a/DDCond/include/DDCond/ConditionsDependencyHandler.h +++ b/DDCond/include/DDCond/ConditionsDependencyHandler.h @@ -57,7 +57,7 @@ namespace dd4hep { mutable size_t num_callback; protected: - /// detaill call to trigger update callback + /// Internal call to trigger update callback Condition::Object* do_callback(const ConditionDependency& dep) const; public: diff --git a/DDCond/src/ConditionsDependencyHandler.cpp b/DDCond/src/ConditionsDependencyHandler.cpp index ff2d9127f..d73d86885 100644 --- a/DDCond/src/ConditionsDependencyHandler.cpp +++ b/DDCond/src/ConditionsDependencyHandler.cpp @@ -65,7 +65,7 @@ Condition ConditionsDependencyHandler::get(Condition::key_type key) const { } -/// detaill call to trigger update callback +/// Internal call to trigger update callback Condition::Object* ConditionsDependencyHandler::do_callback(const ConditionDependency& dep) const { try { diff --git a/DDCond/src/plugins/ConditionsPlugins.cpp b/DDCond/src/plugins/ConditionsPlugins.cpp index 50eee2dd2..8b1feecec 100644 --- a/DDCond/src/plugins/ConditionsPlugins.cpp +++ b/DDCond/src/plugins/ConditionsPlugins.cpp @@ -228,7 +228,7 @@ DECLARE_APPLY(DD4hep_ConditionsDump,ddcond_dump_conditions) */ static int ddcond_detelement_dump(Detector& description, int argc, char** argv) { - /// detaill class to perform recursive printout + /// Internal class to perform recursive printout /* * \author M.Frank * \version 1.0 @@ -293,7 +293,7 @@ DECLARE_DD4HEP_CONSTRUCTOR(DD4hep_ConditionsPrepare,ddcond_prepare_plugin) */ static int ddcond_detelement_processor(Detector& description, int argc, char** argv) { - /// detaill class to perform recursive printout + /// Internal class to perform recursive printout /* * \author M.Frank * \version 1.0 diff --git a/DDCond/src/plugins/ConditionsUserPool.cpp b/DDCond/src/plugins/ConditionsUserPool.cpp index f0ad23607..d1dd05665 100644 --- a/DDCond/src/plugins/ConditionsUserPool.cpp +++ b/DDCond/src/plugins/ConditionsUserPool.cpp @@ -52,10 +52,10 @@ namespace dd4hep { /// The loader to access non-existing conditions ConditionsDataLoader* m_loader = 0; - /// detaill helper to find conditions + /// Internal helper to find conditions Condition::Object* i_findCondition(Condition::key_type key) const; - /// detaill insertion helper + /// Internal insertion helper bool i_insert(Condition::Object* o); public: diff --git a/DDCore/include/DD4hep/AlignmentsNominalMap.h b/DDCore/include/DD4hep/AlignmentsNominalMap.h index 436b14d93..d86db1f3d 100644 --- a/DDCore/include/DD4hep/AlignmentsNominalMap.h +++ b/DDCore/include/DD4hep/AlignmentsNominalMap.h @@ -74,7 +74,7 @@ namespace dd4hep { /// Interface to partially scan data content of the alignments mapping /** Note: This default implementation assumes unordered containers and hence is * not the most efficient implementation! - * detaillly it uses "scan(Processor& processor)" + * Internaly it uses "scan(Processor& processor)" * the subselection hence is linearly depending of the number of elements. * * Using ordered maps with "lower_bound(key)" this can be greatly improved. diff --git a/DDCore/include/DD4hep/ConditionsData.h b/DDCore/include/DD4hep/ConditionsData.h index 31ba72dac..22852b45c 100644 --- a/DDCore/include/DD4hep/ConditionsData.h +++ b/DDCore/include/DD4hep/ConditionsData.h @@ -40,7 +40,7 @@ namespace dd4hep { virtual void release() = 0; }; - /// Conditions data block. detaillly maps other objects to abstract data blocks + /// Conditions data block. Internaly maps other objects to abstract data blocks /** * \author M.Frank * \version 1.0 diff --git a/DDCore/include/DD4hep/ConditionsMap.h b/DDCore/include/DD4hep/ConditionsMap.h index d9ac55337..fb9036d3c 100644 --- a/DDCore/include/DD4hep/ConditionsMap.h +++ b/DDCore/include/DD4hep/ConditionsMap.h @@ -97,7 +97,7 @@ namespace dd4hep { /// Interface to partially scan data content of the conditions mapping /** Note: This default implementation assumes unordered containers and hence is * not the most efficient implementation! - * detaillly it uses "scan(Processor& processor)" + * Internaly it uses "scan(Processor& processor)" * the subselection hence is linearly depending of the number of elements. * * This default implementation uses diff --git a/DDCore/include/DD4hep/ConditionsPrinter.h b/DDCore/include/DD4hep/ConditionsPrinter.h index 0c625fcfc..0063f1198 100644 --- a/DDCore/include/DD4hep/ConditionsPrinter.h +++ b/DDCore/include/DD4hep/ConditionsPrinter.h @@ -37,7 +37,7 @@ namespace dd4hep { */ class ConditionsPrinter { protected: - /// detaill param printer class + /// Internal param printer class class ParamPrinter; friend class ParamPrinter; diff --git a/DDCore/include/DD4hep/DD4hepUnits.h b/DDCore/include/DD4hep/DD4hepUnits.h index 1406846f7..f3f10c35b 100644 --- a/DDCore/include/DD4hep/DD4hepUnits.h +++ b/DDCore/include/DD4hep/DD4hepUnits.h @@ -292,7 +292,7 @@ namespace dd4hep { // steradian // // Below is a non exhaustive list of Physical CONSTANTS, - // computed in the detaill HEP System Of Units. + // computed in the Internal HEP System Of Units. // // Most of them are extracted from the Particle Data Book : // Phys. Rev. D volume 50 3-1 (1994) page 1233 diff --git a/DDCore/include/DD4hep/DetElement.h b/DDCore/include/DD4hep/DetElement.h index 32d5408b3..7a6793375 100644 --- a/DDCore/include/DD4hep/DetElement.h +++ b/DDCore/include/DD4hep/DetElement.h @@ -195,7 +195,7 @@ namespace dd4hep { PLACEMENT_NONE }; - /// detaill assert function to check conditions + /// Internal assert function to check conditions void check(bool condition, const std::string& msg) const; protected: @@ -215,7 +215,7 @@ namespace dd4hep { void (*destruct)(void*)) const; /// Access an existing extension object from the detector element void* i_extension(const std::type_info& info) const; - /// detaill call to extend the detector element with an arbitrary structure accessible by the type + /// Internal call to extend the detector element with an arbitrary structure accessible by the type void i_addUpdateCall(unsigned int callback_type, const Callback& callback) const; public: diff --git a/DDCore/include/DD4hep/Fields.h b/DDCore/include/DD4hep/Fields.h index 8f74338b5..9c38edca3 100644 --- a/DDCore/include/DD4hep/Fields.h +++ b/DDCore/include/DD4hep/Fields.h @@ -44,7 +44,7 @@ namespace dd4hep { }; typedef std::map<std::string, std::map<std::string, std::string> > Properties; - /// detaill data class shared by all handles of a given type + /// Internal data class shared by all handles of a given type /** * \author M.Frank * \version 1.0 @@ -131,7 +131,7 @@ namespace dd4hep { typedef std::map<std::string, std::string> PropertyValues; typedef std::map<std::string, PropertyValues> Properties; - /// detaill data class shared by all handles + /// Internal data class shared by all handles /** * \author M.Frank * \version 1.0 diff --git a/DDCore/include/DD4hep/GeoHandler.h b/DDCore/include/DD4hep/GeoHandler.h index 893ab558b..985938c25 100644 --- a/DDCore/include/DD4hep/GeoHandler.h +++ b/DDCore/include/DD4hep/GeoHandler.h @@ -97,7 +97,7 @@ namespace dd4hep { bool m_propagateRegions; std::map<int, std::set<const TGeoNode*> >* m_data; - /// detaill helper to collect geometry information from traversal + /// Internal helper to collect geometry information from traversal GeoHandler& i_collect(const TGeoNode* node, int level, Region rg, LimitSet ls); private: diff --git a/DDCore/include/DD4hep/InstanceCount.h b/DDCore/include/DD4hep/InstanceCount.h index 5a7cdccf3..c7e044ced 100644 --- a/DDCore/include/DD4hep/InstanceCount.h +++ b/DDCore/include/DD4hep/InstanceCount.h @@ -39,7 +39,7 @@ namespace dd4hep { ALL = STRING | TYPEINFO }; - /// detaill class to could object constructions and destructions + /// Internal class to could object constructions and destructions /** * Small class to enable object construction/destruction tracing. * diff --git a/DDCore/include/DD4hep/OpaqueData.h b/DDCore/include/DD4hep/OpaqueData.h index 28dfe2e25..14a4c3ca0 100644 --- a/DDCore/include/DD4hep/OpaqueData.h +++ b/DDCore/include/DD4hep/OpaqueData.h @@ -90,7 +90,7 @@ namespace dd4hep { BOUND_DATA = 1<<3 }; /// Data buffer: plain data are allocated directly on this buffer - /** detaill data buffer is sufficient to store any vector */ + /** Internal data buffer is sufficient to store any vector */ unsigned char data[sizeof(std::vector<void*>)]; /// Destructor function -- only set if the object is valid void (*destruct)(void*); diff --git a/DDCore/include/DD4hep/Shapes.h b/DDCore/include/DD4hep/Shapes.h index d442e2899..109b8e7c1 100644 --- a/DDCore/include/DD4hep/Shapes.h +++ b/DDCore/include/DD4hep/Shapes.h @@ -113,7 +113,7 @@ namespace dd4hep { */ class Box: public Solid_type<TGeoBBox> { protected: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(double x_val, double y_val, double z_val); public: @@ -156,7 +156,7 @@ namespace dd4hep { */ class HalfSpace: public Solid_type<TGeoHalfSpace> { protected: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(const double* const point, const double* const normal); public: @@ -270,7 +270,7 @@ namespace dd4hep { */ class Tube: public Solid_type< /*TGeoTubeSeg */MyConeSeg> { protected: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(const std::string& nam, double rmin, double rmax, double z, double startPhi, double deltaPhi); public: @@ -321,7 +321,7 @@ namespace dd4hep { */ class EllipticalTube: public Solid_type<TGeoEltu> { protected: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(double a, double b, double dz); public: @@ -356,7 +356,7 @@ namespace dd4hep { */ class Cone: public Solid_type<TGeoCone> { protected: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(double z, double rmin1, double rmax1, double rmin2, double rmax2); public: /// Default constructor @@ -390,7 +390,7 @@ namespace dd4hep { */ class Trap: public Solid_type<TGeoTrap> { private: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(double pz, double py, double px, double pLTX); public: /// Default constructor @@ -430,7 +430,7 @@ namespace dd4hep { */ class Trapezoid: public Solid_type<TGeoTrd2> { private: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(double x1, double x2, double y1, double y2, double z); public: @@ -465,7 +465,7 @@ namespace dd4hep { */ class Torus: public Solid_type<TGeoTorus> { private: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(double r, double rmin, double rmax, double phi, double delta_phi); public: /// Default constructor @@ -616,7 +616,7 @@ namespace dd4hep { */ class EightPointSolid: public Solid_type<TGeoArb8> { private: - /// detaill helper method to support object construction + /// Internal helper method to support object construction void make(double dz, const double* vtx); public: /// Default constructor diff --git a/DDCore/include/DD4hep/Volumes.h b/DDCore/include/DD4hep/Volumes.h index 5d4b46767..746490ca0 100644 --- a/DDCore/include/DD4hep/Volumes.h +++ b/DDCore/include/DD4hep/Volumes.h @@ -169,7 +169,7 @@ namespace dd4hep { /// Implementation class extending the ROOT volume (TGeoVolume) /** - * detaill data structure optional to TGeo data. + * Internal data structure optional to TGeo data. * * For any further documentation please see the following ROOT documentation: * \see http://root.cern.ch/root/html/TGeoExtension.html diff --git a/DDCore/include/DD4hep/detail/AlignmentsInterna.h b/DDCore/include/DD4hep/detail/AlignmentsInterna.h index b230c6819..3ece0e0a1 100644 --- a/DDCore/include/DD4hep/detail/AlignmentsInterna.h +++ b/DDCore/include/DD4hep/detail/AlignmentsInterna.h @@ -36,7 +36,7 @@ namespace dd4hep { class Alignment; /// Alignments internal namespace declaration - /** detaillly defined datastructures are not presented to the + /** Internaly defined datastructures are not presented to the * user directly, but are used by dedicated views. * * \author M.Frank diff --git a/DDCore/include/DD4hep/detail/ConditionsInterna.h b/DDCore/include/DD4hep/detail/ConditionsInterna.h index 7b57fdb73..f54e176f8 100644 --- a/DDCore/include/DD4hep/detail/ConditionsInterna.h +++ b/DDCore/include/DD4hep/detail/ConditionsInterna.h @@ -38,7 +38,7 @@ namespace dd4hep { class IOVType; /// DD4hep internal namespace declaration for utilities and implementation details - /** detaillly defined datastructures are not presented to the + /** Internaly defined datastructures are not presented to the * user directly, but are used by dedicated views. * * \author M.Frank diff --git a/DDCore/include/DD4hep/detail/DetectorInterna.h b/DDCore/include/DD4hep/detail/DetectorInterna.h index 6813b2697..c81cab219 100644 --- a/DDCore/include/DD4hep/detail/DetectorInterna.h +++ b/DDCore/include/DD4hep/detail/DetectorInterna.h @@ -66,7 +66,7 @@ namespace dd4hep { SensitiveDetectorObject(); /// Initializing constructor SensitiveDetectorObject(const std::string& nam); - /// detaill object destructor: release extension object(s) + /// Internal object destructor: release extension object(s) virtual ~SensitiveDetectorObject(); }; @@ -155,7 +155,7 @@ namespace dd4hep { private: //@{ Private methods used internally by the object itself. */ - /// Resolve the world object. detaill use ONLY. + /// Resolve the world object. Internal use ONLY. World i_access_world(); public: @@ -164,7 +164,7 @@ namespace dd4hep { DetElementObject(const std::string& nam, int ident); /// Default constructor DetElementObject(); - /// detaill object destructor: release extension object(s) + /// Internal object destructor: release extension object(s) virtual ~DetElementObject(); /// Deep object copy to replicate DetElement trees e.g. for reflection virtual DetElementObject* clone(int new_id, int flag) const; @@ -201,7 +201,7 @@ namespace dd4hep { /// Initializing constructor WorldObject(Detector& description, const std::string& nam); #endif - /// detaill object destructor: release extension object(s) + /// Internal object destructor: release extension object(s) virtual ~WorldObject(); }; diff --git a/DDCore/include/DD4hep/detail/Plugins.inl b/DDCore/include/DD4hep/detail/Plugins.inl index b381fc207..33c3828e7 100644 --- a/DDCore/include/DD4hep/detail/Plugins.inl +++ b/DDCore/include/DD4hep/detail/Plugins.inl @@ -67,7 +67,7 @@ namespace dd4hep { { return ROOT::Reflex::PluginService::Create<R>(name, a0, a1, a2, a3, a4, a5); } - /** detaill namespace -- should under no circumstances be used directly. + /** Internal namespace -- should under no circumstances be used directly. * The named namespace is necessary to trick the linker. Entries in an anonymous * namespace would be oiptimized away..... * diff --git a/DDCore/include/XML/XMLElements.h b/DDCore/include/XML/XMLElements.h index be63afeb1..e5d8ac848 100644 --- a/DDCore/include/XML/XMLElements.h +++ b/DDCore/include/XML/XMLElements.h @@ -234,7 +234,7 @@ namespace dd4hep { * -- unicode * -- std::string * -- const char*. - * detaillly a copy representation as an std::string is kept. + * Internaly a copy representation as an std::string is kept. * * \author M.Frank * \version 1.0 diff --git a/DDCore/include/XML/tinyxml.h b/DDCore/include/XML/tinyxml.h index 95660eac5..b4798b0fc 100644 --- a/DDCore/include/XML/tinyxml.h +++ b/DDCore/include/XML/tinyxml.h @@ -96,7 +96,7 @@ const int TIXML_MAJOR_VERSION = 2; const int TIXML_MINOR_VERSION = 5; const int TIXML_PATCH_VERSION = 2; -/* detaill structure for tracking location of items +/* Internal structure for tracking location of items in the XML file. */ struct TiXmlCursor { diff --git a/DDCore/src/DetElement.cpp b/DDCore/src/DetElement.cpp index 7c75ff3e5..704f8e27f 100644 --- a/DDCore/src/DetElement.cpp +++ b/DDCore/src/DetElement.cpp @@ -76,7 +76,7 @@ void* DetElement::i_extension(const type_info& info) const { return access()->extension(info); } -/// detaill call to extend the detector element with an arbitrary structure accessible by the type +/// Internal call to extend the detector element with an arbitrary structure accessible by the type void DetElement::i_addUpdateCall(unsigned int callback_type, const Callback& callback) const { access()->updateCalls.push_back(make_pair(callback,callback_type)); } diff --git a/DDCore/src/DetectorImp.cpp b/DDCore/src/DetectorImp.cpp index 99e00bc59..0c8dc2fed 100644 --- a/DDCore/src/DetectorImp.cpp +++ b/DDCore/src/DetectorImp.cpp @@ -295,7 +295,7 @@ Material DetectorImp::material(const string& name) const { throw runtime_error("Cannot find a material referenced by name:" + name); } -/// detaill helper to map detector types once the geometry is closed +/// Internal helper to map detector types once the geometry is closed void DetectorImp::mapDetectorTypes() { for( const auto& i : m_detectors ) { DetElement det(i.second); diff --git a/DDCore/src/DetectorImp.h b/DDCore/src/DetectorImp.h index de79569de..6ee28422f 100644 --- a/DDCore/src/DetectorImp.h +++ b/DDCore/src/DetectorImp.h @@ -51,7 +51,7 @@ namespace dd4hep { /// Disable assignment operator DetectorImp& operator=(const DetectorImp& copy) = delete; - /// detaill helper to map detector types once the geometry is closed + /// Internal helper to map detector types once the geometry is closed void mapDetectorTypes(); public: diff --git a/DDCore/src/DetectorInterna.cpp b/DDCore/src/DetectorInterna.cpp index 7aa22b294..a25f979a0 100644 --- a/DDCore/src/DetectorInterna.cpp +++ b/DDCore/src/DetectorInterna.cpp @@ -50,7 +50,7 @@ SensitiveDetectorObject::SensitiveDetectorObject(const std::string& nam) InstanceCount::increment(this); } -/// detaill object destructor: release extension object(s) +/// Internal object destructor: release extension object(s) SensitiveDetectorObject::~SensitiveDetectorObject() { readout.clear(); region.clear(); @@ -82,7 +82,7 @@ DetElementObject::DetElementObject(const std::string& nam, int ident) InstanceCount::increment(this); } -/// detaill object destructor: release extension object(s) +/// Internal object destructor: release extension object(s) DetElementObject::~DetElementObject() { destroyHandles(children); destroyHandle (nominal); @@ -212,6 +212,6 @@ WorldObject::WorldObject(Detector& _description, const string& nam) { } -/// detaill object destructor: release extension object(s) +/// Internal object destructor: release extension object(s) WorldObject::~WorldObject() { } diff --git a/DDCore/src/DetectorTools.cpp b/DDCore/src/DetectorTools.cpp index 6118d66d3..8f0cde3ea 100644 --- a/DDCore/src/DetectorTools.cpp +++ b/DDCore/src/DetectorTools.cpp @@ -46,7 +46,7 @@ namespace dd4hep { bool findChild(PlacedVolume parent, PlacedVolume child, PlacementPath& path); - // detaill helper + // Internal helper static void makePlacementPath(PlacementPath det_nodes, PlacementPath& all_nodes); }} } diff --git a/DDCore/src/ObjectExtensions.cpp b/DDCore/src/ObjectExtensions.cpp index 98252671e..f1d111e3e 100644 --- a/DDCore/src/ObjectExtensions.cpp +++ b/DDCore/src/ObjectExtensions.cpp @@ -49,7 +49,7 @@ void ObjectExtensions::move(ObjectExtensions& source) { source.extensions.clear(); } -/// detaill object destructor: release extension object(s) +/// Internal object destructor: release extension object(s) void ObjectExtensions::clear(bool destroy) { for( const auto& i : extensions ) { if ( i.second ) { diff --git a/DDCore/src/PluginTester.cpp b/DDCore/src/PluginTester.cpp index 3a7e78b5d..951cc12b3 100644 --- a/DDCore/src/PluginTester.cpp +++ b/DDCore/src/PluginTester.cpp @@ -41,7 +41,7 @@ PluginTester::~PluginTester() { InstanceCount::decrement(this); } -/// detaill object destructor: release extension object(s) +/// Internal object destructor: release extension object(s) void PluginTester::clear(bool destroy) { for (Extensions::iterator i = extensions.begin(); i != extensions.end(); ++i) { void* ptr = (*i).second; diff --git a/DDCore/src/Shapes.cpp b/DDCore/src/Shapes.cpp index 55cde6a77..a7601538f 100644 --- a/DDCore/src/Shapes.cpp +++ b/DDCore/src/Shapes.cpp @@ -207,7 +207,7 @@ double Box::z() const { return this->ptr()->GetDZ(); } -/// detaill helper method to support object construction +/// Internal helper method to support object construction void HalfSpace::make(const double* const point, const double* const normal) { _assign(new TGeoHalfSpace("",(Double_t*)point, (Double_t*)normal), "", "halfspace",true); } diff --git a/DDRec/include/DDRec/DetectorData.h b/DDRec/include/DDRec/DetectorData.h index 9daaa684e..992003c70 100644 --- a/DDRec/include/DDRec/DetectorData.h +++ b/DDRec/include/DDRec/DetectorData.h @@ -193,7 +193,7 @@ namespace dd4hep { }; } ; - /** detaill helper struct for defining the layer layout. Layers are defined + /** Internal helper struct for defining the layer layout. Layers are defined * with a sensitive part and a support part. */ struct LayerLayout{ diff --git a/GaudiPluginService/Gaudi/Details/PluginServiceDetails.h b/GaudiPluginService/Gaudi/Details/PluginServiceDetails.h index fbcd7e37a..67b6d0026 100644 --- a/GaudiPluginService/Gaudi/Details/PluginServiceDetails.h +++ b/GaudiPluginService/Gaudi/Details/PluginServiceDetails.h @@ -193,7 +193,7 @@ namespace Gaudi { namespace PluginService { /// Flag recording if the registry has been initialized or not. bool m_initialized; - /// detaill storage for factories. + /// Internal storage for factories. FactoryMap m_factories; #if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L diff --git a/cmake/Doxyfile.in b/cmake/Doxyfile.in index 28fab0bb1..932355565 100644 --- a/cmake/Doxyfile.in +++ b/cmake/Doxyfile.in @@ -684,7 +684,7 @@ INPUT += @CMAKE_CURRENT_SOURCE_DIR@/doc/doxygen/DD4hepGroups.h #INPUT += @CMAKE_CURRENT_SOURCE_DIR@//include # This tag can be used to specify the character encoding of the source files -# that doxygen parses. detaillly doxygen uses the UTF-8 encoding, which is +# that doxygen parses. Internaly doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. -- GitLab