Skip to content

Commit

Permalink
Merge pull request #102 from rest-for-physics/any_bug_fix
Browse files Browse the repository at this point in the history
Addressing compilation issue after merge with master
  • Loading branch information
jgalan authored Sep 6, 2023
2 parents 6c28924 + d519fb8 commit 96bb57b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions inc/TRestDetectorHitmapAnalysisProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class TRestDetectorHitmapAnalysisProcess : public TRestEventProcess {
TVector3 Translation(const TVector3& pos, const HitTransformation& tr);

public:
any GetInputEvent() const override { return fHitsEvent; }
any GetOutputEvent() const override { return fHitsEvent; }
RESTValue GetInputEvent() const override { return fHitsEvent; }
RESTValue GetOutputEvent() const override { return fHitsEvent; }

TRestEvent* ProcessEvent(TRestEvent* inputEvent) override;

Expand Down
4 changes: 2 additions & 2 deletions inc/TRestDetectorHitsRotationProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class TRestDetectorHitsRotationProcess : public TRestEventProcess {
TVector3 fAxis = {0, 0, 1}; //<

public:
any GetInputEvent() const override { return fInputEvent; }
any GetOutputEvent() const override { return fOutputEvent; }
RESTValue GetInputEvent() const override { return fInputEvent; }
RESTValue GetOutputEvent() const override { return fOutputEvent; }

TRestEvent* ProcessEvent(TRestEvent* inputEvent) override;

Expand Down
4 changes: 2 additions & 2 deletions inc/TRestDetectorHitsSpecularProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ class TRestDetectorHitsSpecularProcess : public TRestEventProcess {
TVector3 fNormal = {0, 0, 1}; //<

public:
any GetInputEvent() const override { return fInputEvent; }
any GetOutputEvent() const override { return fOutputEvent; }
RESTValue GetInputEvent() const override { return fInputEvent; }
RESTValue GetOutputEvent() const override { return fOutputEvent; }

TRestEvent* ProcessEvent(TRestEvent* inputEvent) override;

Expand Down
4 changes: 2 additions & 2 deletions inc/TRestDetectorHitsTranslationProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ class TRestDetectorHitsTranslationProcess : public TRestEventProcess {
TVector3 fTranslation = {0, 0, 0}; //<

public:
any GetInputEvent() const override { return fInputEvent; }
any GetOutputEvent() const override { return fOutputEvent; }
RESTValue GetInputEvent() const override { return fInputEvent; }
RESTValue GetOutputEvent() const override { return fOutputEvent; }

TRestEvent* ProcessEvent(TRestEvent* inputEvent) override;

Expand Down

0 comments on commit 96bb57b

Please sign in to comment.