Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DataFormats/GeometrySurface/interface/SimpleConeBounds.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <limits>
#include <algorithm>

class SimpleConeBounds final : public Bounds {
class SimpleConeBounds : public Bounds {
public:
/// Construct from inner/outer radius on the two Z faces
SimpleConeBounds(float zmin, float rmin_zmin, float rmax_zmin, float zmax, float rmin_zmax, float rmax_zmax)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <cmath>
#include <algorithm>

class SimpleCylinderBounds final : public Bounds {
class SimpleCylinderBounds : public Bounds {
public:
SimpleCylinderBounds(float rmin, float rmax, float zmin, float zmax);

Expand Down
2 changes: 1 addition & 1 deletion DataFormats/GeometrySurface/interface/SimpleDiskBounds.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Plane bounds that define a disk with a concentric hole in the middle.
*/

class SimpleDiskBounds final : public Bounds {
class SimpleDiskBounds : public Bounds {
public:
/// Construct the bounds from min and max R and Z in LOCAL coordinates.
SimpleDiskBounds(float rmin, float rmax, float zmin, float zmax);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class PCaloHitCompareTimes {
bool operator()(const PCaloHit* a, const PCaloHit* b) const { return a->time() < b->time(); }
};

class HcalSiPMHitResponse final : public CaloHitResponse {
class HcalSiPMHitResponse : public CaloHitResponse {
public:
HcalSiPMHitResponse(const CaloVSimParameterMap* parameterMap,
const CaloShapes* shapes,
Expand Down