Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion offline/packages/mbd/MbdEvent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ int MbdEvent::InitRun()
{
// Download calibrations
int status = _mbdcal->Download_All();
if ( status == -1 )
if ( status < 0 && _calpass==0 ) // only abort for normal processing
{
return Fun4AllReturnCodes::ABORTRUN;
}
Expand Down
2 changes: 2 additions & 0 deletions offline/packages/mbd/MbdReco.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class MbdReco : public SubsysReco
void SetProcChargeCh(const bool s) { _always_process_charge = s; }
void SetMbdTrigOnly(const int m) { _mbdonly = m; }

MbdEvent* GetMbdEvent() { return m_mbdevent.get(); }

private:
int createNodes(PHCompositeNode *topNode);
int getNodes(PHCompositeNode *topNode);
Expand Down
2 changes: 2 additions & 0 deletions offline/packages/mbd/MbdSig.cc
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,13 @@ void MbdSig::SetXY(const Float_t* x, const Float_t* y, const int invert)
Remove_Pileup();
}

/*
if ( _verbose && _ch==9 )
{
std::cout << "SetXY: ch " << _ch << std::endl;
gSubPulse->Print("ALL");
}
*/
}

_evt_counter++;
Expand Down