Skip to content

Commit

Permalink
CDC fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Britton committed Jul 9, 2018
1 parent e443068 commit cecc36f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/libraries/HDDM/DEventSourceHDDM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1229,8 +1229,8 @@ jerror_t DEventSourceHDDM::Extract_DCDCHit(JEventLoop* locEventLoop, hddm_s::HDD
// assume that is what we are reading in, so that we don't support the
// default tag anymore
// sdobbs -- 3/13/2018
//if (tag != "" && tag != "TRUTH" && tag != "Calib")
if (tag != "TRUTH" && tag != "Calib")
if (tag != "" && tag != "TRUTH" && tag != "Calib")
//if (tag != "TRUTH" && tag != "Calib")
return OBJECT_NOT_AVAILABLE;

vector<DCDCHit*> data;
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/HDDM/DEventWriterHDDM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ DEventWriterHDDM::DEventWriterHDDM(JEventLoop* locEventLoop, string locOutputFil
}
}

CDC_TAG = "Calib";
CDC_TAG = "";
gPARMS->SetDefaultParameter("HDDMOUT:CDCTAG", CDC_TAG, "Tag (string) to use when selecting CDC hits to read out.");

FDC_TAG = "";
Expand Down

0 comments on commit cecc36f

Please sign in to comment.