Skip to content

Fix TMVATransform.cpp to check if an input exists in the input DICT

Christopher Rob Jones requested to merge TMVATransform-CheckInputExists into master

Will throw an exception if it isn't, rather than silently adding and using a default value for the missing input.

Note operator[], find() (and at()) all have the same complexity for std::map, as they all underneath have to perform the same search, so this will be no slower.

Merge request reports