Skip to content
Snippets Groups Projects
Commit fdab0e82 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Change to static cast following feedback

parent 5478c887
No related branches found
No related tags found
No related merge requests found
...@@ -302,7 +302,7 @@ StatusCode MuonCalibrationAndSmearingTool::initialize() { ...@@ -302,7 +302,7 @@ StatusCode MuonCalibrationAndSmearingTool::initialize() {
return NULL; return NULL;
} }
TH3 *h3= dynamic_cast<TH3*>(fmc->Get(hname.c_str())); TH3 *h3= static_cast<TH3*>(fmc->Get(hname.c_str()));
if( h3==NULL ){ if( h3==NULL ){
ATH_MSG_ERROR("NULL sagitta map"); ATH_MSG_ERROR("NULL sagitta map");
......
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