Skip to content

Struct for mapping silicon scorer output

Adrien Matta requested to merge github/fork/Munken/scorer-struct into NPTool.2.dev

Created by: Munken

This adds structs mapping for the scorer output.

Hence in the ReadSensitive part of the tutorial this line

G4double* Info = *(Strip_itr->second);

could be change to this:

RectangularOutput* Info = (RectangularOutput*) *(Strip_itr->second);

Merge request reports