Skip to content
Merged
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
4 changes: 2 additions & 2 deletions FastSimulation/CaloGeometryTools/interface/BaseCrystal.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class BaseCrystal {
// side numbering
// enum CrystalSide{EAST=0,NORTH=1,WEST=2,SOUTH=3,FRONT=4,BACK=5};
/// Empty constructor
BaseCrystal() { ; };
BaseCrystal() = default;
/// constructor from DetId
BaseCrystal(const DetId& cell);

Expand All @@ -36,7 +36,7 @@ class BaseCrystal {
// computeBasicProperties();
// std::cout << " done " << std::endl;
// }
~BaseCrystal() { ; }
~BaseCrystal() = default;
///
void setCorners(const CaloCellGeometry::CornersVec& vec, const GlobalPoint& pos);

Expand Down