Skip to content
Snippets Groups Projects
Commit ac6d0420 authored by Andre Sailer's avatar Andre Sailer
Browse files

Fix typo: segmetnation -> segmentation

parent 45aa4551
No related branches found
No related tags found
No related merge requests found
...@@ -70,9 +70,9 @@ namespace dd4hep { ...@@ -70,9 +70,9 @@ namespace dd4hep {
DDSegmentation::Parameters parameters() const; DDSegmentation::Parameters parameters() const;
/// Access to parameter by name /// Access to parameter by name
DDSegmentation::Parameter parameter(const std::string& parameterName) const; DDSegmentation::Parameter parameter(const std::string& parameterName) const;
/// Access the main detector element using this segmetnation object /// Access the main detector element using this segmentation object
Handle<DetElementObject> detector() const; Handle<DetElementObject> detector() const;
/// Access the sensitive detector using this segmetnation object /// Access the sensitive detector using this segmentation object
Handle<SensitiveDetectorObject> sensitive() const; Handle<SensitiveDetectorObject> sensitive() const;
/// Access the underlying decoder /// Access the underlying decoder
const BitFieldCoder* decoder() const; const BitFieldCoder* decoder() const;
......
...@@ -112,12 +112,12 @@ void Segmentation::setDecoder(const BitFieldCoder* decode) const { ...@@ -112,12 +112,12 @@ void Segmentation::setDecoder(const BitFieldCoder* decode) const {
access()->segmentation->setDecoder(decode); access()->segmentation->setDecoder(decode);
} }
/// Access the main detector element using this segmetnation object /// Access the main detector element using this segmentation object
Handle<DetElementObject> Segmentation::detector() const { Handle<DetElementObject> Segmentation::detector() const {
return access()->detector; return access()->detector;
} }
/// Access the sensitive detector using this segmetnation object /// Access the sensitive detector using this segmentation object
Handle<SensitiveDetectorObject> Segmentation::sensitive() const { Handle<SensitiveDetectorObject> Segmentation::sensitive() const {
return access()->sensitive; return access()->sensitive;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment