Skip to content

Commit

Permalink
BeamCalFitShower: change C type struct declaration to C++
Browse files Browse the repository at this point in the history
  • Loading branch information
andresailer committed Nov 10, 2021
1 parent 96fb3a9 commit e8ad9ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/BeamCalReco/include/BeamCalFitShower.hh
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ class BeamCalPadGeometry;
/**
* @brief Segment parameters for profile of the calorimeter energy deposition
*/
typedef struct {
struct EdepProfile_t {
int id=0;
double towerChi2=0;
double totalEdep=0;
double bkgEdep=0;
double bkgSigma=0;
BeamCalPadGeometry *padGeom=nullptr;
std::map<int, double> padIDs{};
} EdepProfile_t;
} ;


class BeamCalFitShower {
Expand Down

0 comments on commit e8ad9ed

Please sign in to comment.