Skip to content
Snippets Groups Projects
Commit 9463ea06 authored by Frank Gaede's avatar Frank Gaede
Browse files

- fixed wrong type string "CartesianGridXY"

parent 1067f7e0
No related branches found
No related tags found
No related merge requests found
/*
* CartesianGridXY.cpp
* CartesianGridXZ.cpp
*
* Created on: Jun 28, 2013
* Author: Christian Grefe, CERN
......@@ -18,8 +18,8 @@ using std::vector;
CartesianGridXZ::CartesianGridXZ(const string& cellEncoding) :
CartesianGrid(cellEncoding) {
// define type and description
_type = "CartesianGridXY";
_description = "Cartesian segmentation in the local XY-plane";
_type = "CartesianGridXZ";
_description = "Cartesian segmentation in the local XZ-plane";
// register all necessary parameters
registerParameter("grid_size_x", "Cell size in X", _gridSizeX, 1., SegmentationParameter::LengthUnit);
......
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