This PR adds a possibility to name the layers produced by layerProcess.
I need the names in order to assign importances to the cells produced with layerProcess (using the --wIMP argument).
To implement this, I suggest to add a new parameter, CellMap to the surfDivide::activeDivideTemplate method. If cell map of the component is provided AND the original cell is named then the layers are named by adding the layer number to the original cell name.
Nothing happens if cell map is not provided, so it does not affect the old code.
This PR adds a possibility to name the layers produced by
layerProcess
. I need the names in order to assign importances to the cells produced withlayerProcess
(using the--wIMP
argument). To implement this, I suggest to add a new parameter,CellMap
to thesurfDivide::activeDivideTemplate
method. If cell map of the component is provided AND the original cell is named then the layers are named by adding the layer number to the original cell name. Nothing happens if cell map is not provided, so it does not affect the old code.