Skip to content

Commit

Permalink
Address comments of C. Vuosalo, temporarily remove serialization test…
Browse files Browse the repository at this point in the history
… addition
  • Loading branch information
fabiocos committed Dec 6, 2018
1 parent c3498e7 commit 06403ce
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -17,7 +17,6 @@ int main()
testSerialization<PTrackerParameters::Item>();
testSerialization<HcalParameters>();
testSerialization<PHGCalParameters>();
testSerialization<PMTDParameters>();

return 0;
}
2 changes: 1 addition & 1 deletion Geometry/MTDGeometryBuilder/src/MTDParametersFromDD.cc
Expand Up @@ -19,7 +19,7 @@ namespace {

int result(-1);
MTDTopologyMode::Mode eparser = MTDTopologyMode::MTDStringToEnumParser(fvec[0]);
result = (int)(eparser);
result = static_cast<int>(eparser);
return result;
} else {
throw cms::Exception( "MTDParametersFromDD" ) << "Failed to get "<< s << " tag.";
Expand Down

0 comments on commit 06403ce

Please sign in to comment.