Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void JEventProcessor_pedestal_online::Process(const std::shared_ptr<const JEvent
event->Get(f125PIs);

// Although we are only filling objects local to this plugin, the directory changes: Global ROOT lock
lockService->RootFillLock(this);
lockService->RootWriteLock();

if (peddir!=NULL) peddir->cd();

Expand Down Expand Up @@ -335,8 +335,9 @@ void JEventProcessor_pedestal_online::Process(const std::shared_ptr<const JEvent
}

maindir->cd();

// Unlock ROOT
lockService->RootFillUnLock(this);
lockService->RootUnLock();
}


Expand Down