Skip to content

Commit d606855

Browse files
committed
Applied clang-format
1 parent c04dae6 commit d606855

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

geom/vecgeom/src/TGeoVGConverter.cxx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ void TGeoVGConverter::ConvertGeometry()
7878

7979
// Print info about selected/excluded shapes
8080
if (gGeoManager->GetVerboseLevel() > 1) {
81-
if ( ! fSelectedShapeTypes.empty()) {
82-
Info("ConvertGeometry","# %zu selected shape type for conversion \n", fSelectedShapeTypes.size());
81+
if (!fSelectedShapeTypes.empty()) {
82+
Info("ConvertGeometry", "# %zu selected shape type for conversion \n", fSelectedShapeTypes.size());
8383
}
84-
if ( ! fExcludedShapeTypes.empty()) {
85-
Info("ConvertGeometry","# %zu shape types excluded from conversion \n", fExcludedShapeTypes.size());
84+
if (!fExcludedShapeTypes.empty()) {
85+
Info("ConvertGeometry", "# %zu shape types excluded from conversion \n", fExcludedShapeTypes.size());
8686
}
8787
}
8888

@@ -99,7 +99,7 @@ void TGeoVGConverter::ConvertGeometry()
9999
if ((! fSelectedShapeTypes.empty()) &&
100100
(! isInSelection(vol->GetShape(), fSelectedShapeTypes))) {
101101
if (gGeoManager->GetVerboseLevel() > 1) {
102-
Info("ConvertGeometry","# Shape type %s is not selected for conversion\n",
102+
Info("ConvertGeometry", "# Shape type %s is not selected for conversion\n",
103103
vol->GetShape()->IsA()->GetName());
104104
}
105105
continue;
@@ -108,8 +108,7 @@ void TGeoVGConverter::ConvertGeometry()
108108
// Skip shapes excluded from conversion
109109
if (isInSelection(vol->GetShape(), fExcludedShapeTypes)) {
110110
if (gGeoManager->GetVerboseLevel() > 1) {
111-
Info("ConvertGeometry","# Shape type %s is excluded from conversion\n",
112-
vol->GetShape()->IsA()->GetName());
111+
Info("ConvertGeometry", "# Shape type %s is excluded from conversion\n", vol->GetShape()->IsA()->GetName());
113112
}
114113
continue;
115114
}
@@ -122,7 +121,7 @@ void TGeoVGConverter::ConvertGeometry()
122121
}
123122
}
124123
if (gGeoManager->GetVerboseLevel() > 0) {
125-
Info("ConvertGeometry","# Converted %d shapes to VecGeom ones\n", nconverted);
124+
Info("ConvertGeometry", "# Converted %d shapes to VecGeom ones\n", nconverted);
126125
}
127126
}
128127

0 commit comments

Comments
 (0)