Skip to content

Commit

Permalink
Merge pull request #984 from JeffersonLab/sdobbs_excl_pi0_plugin
Browse files Browse the repository at this point in the history
Fix reaction tag for exclusive pi0 skim
  • Loading branch information
pmattjlab authored Nov 28, 2017
2 parents 46f7cbd + 76acf7a commit 6dca4bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jerror_t DReaction_factory_pi0calib::init(void)
{
// Make as many DReaction objects as desired
DReactionStep* locReactionStep = NULL;
DReaction* locReaction = new DReaction("pi0calib"); //needs to be a unique name for each DReaction object, CANNOT (!) be "Thrown"
DReaction* locReaction = new DReaction("excl_pi0calib"); //needs to be a unique name for each DReaction object, CANNOT (!) be "Thrown"

// DOCUMENTATION:
// ANALYSIS library: https://halldweb1.jlab.org/wiki/index.php/GlueX_Analysis_Software
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class DReaction_factory_pi0calib : public jana::JFactory<DReaction>
// This is so that the created DReaction objects persist throughout the life of the program instead of being cleared each event.
SetFactoryFlag(PERSISTANT);
}
const char* Tag(void){return "pi0calib";}
const char* Tag(void){return "excl_pi0calib";}

private:
jerror_t init(void); ///< Called once at program start.
Expand Down

0 comments on commit 6dca4bc

Please sign in to comment.