Skip to content

Commit

Permalink
Correct documentation for _rejectEvent---->RejectEvent()
Browse files Browse the repository at this point in the history
  • Loading branch information
dglazier committed Sep 17, 2020
1 parent 0ff4894 commit 758ef89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ and/or
#in Pi4.cpp


If it anytime you decide that you do not want to keep this event combination you can set _rejectEvent=kTRUE;
If it anytime you decide that you do not want to keep this event combination you can call RejectEvent(); and return;

#### 2) Define overall reaction kinematics and other general quantities

Expand Down Expand Up @@ -193,9 +193,9 @@ Here the kinematic calculator is used, it can also be used for resonance decay k

# in Pi4.cpp
Again If it anytime you decide that you do not want to keep this event combination you can set _rejectEvent=kTRUE;
Again If it anytime you decide that you do not want to keep this event combination you can call RejectEvent(); and exit the function

if(TD->MesonMass>5) _rejectEvent=kTRUE; //will not save
if(TD->MesonMass>5) {RejectEvent(); return;} //will not save
# in Pi4.cpp

Expand Down

0 comments on commit 758ef89

Please sign in to comment.