Skip to content
Snippets Groups Projects
Commit 307c2ebd authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

AGDDHandlers: Fix cppcheck 2.6 warnings.

A bare throw will just call terminate().
Change them to abort();
parent 896b693a
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!49959AGDDControl, AGDDHandlers: Fix cppcheck 2.6 warnings.
...@@ -49,7 +49,7 @@ void chamberPositionerHandler::ElementHandle(AGDDController& c, ...@@ -49,7 +49,7 @@ void chamberPositionerHandler::ElementHandle(AGDDController& c,
int etaIndex=getAttributeAsInt(c, t, "etaIndex",0); int etaIndex=getAttributeAsInt(c, t, "etaIndex",0);
double dPhi=360./iWedge; double dPhi=360./iWedge;
if (iSectors.size()!= (unsigned int) iWedge) throw; if (iSectors.size()!= (unsigned int) iWedge) std::abort();
for (int i=0;i<iWedge;i++) for (int i=0;i<iWedge;i++)
{ {
......
...@@ -38,7 +38,7 @@ void gvxysxHandler::ElementHandle(AGDDController& c, ...@@ -38,7 +38,7 @@ void gvxysxHandler::ElementHandle(AGDDController& c,
std::vector<double> yvalues=getAttributeAsVector(c, t, "Y"); std::vector<double> yvalues=getAttributeAsVector(c, t, "Y");
// check we have a consistent set of points // check we have a consistent set of points
if(xvalues.size() != yvalues.size()) throw; if(xvalues.size() != yvalues.size()) std::abort();
int nPoints=xvalues.size(); int nPoints=xvalues.size();
TwoPoint* v=new TwoPoint[2*nPoints]; TwoPoint* v=new TwoPoint[2*nPoints];
......
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