From 5f7634d1392df2870b9920fac380a8442adf470e Mon Sep 17 00:00:00 2001 From: Steven Doran <78985334+S81D@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:35:25 -0600 Subject: [PATCH] Update LoadRawData.cpp (#301) Fix to allow event builder to construct MRD + CTC entries --- UserTools/LoadRawData/LoadRawData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UserTools/LoadRawData/LoadRawData.cpp b/UserTools/LoadRawData/LoadRawData.cpp index bbddfcde9..de9b9b680 100644 --- a/UserTools/LoadRawData/LoadRawData.cpp +++ b/UserTools/LoadRawData/LoadRawData.cpp @@ -163,7 +163,7 @@ bool LoadRawData::Execute(){ } //If more MRD events than VME events abort - if (mrdtotalentries > tanktotalentries && BuildType != "MRD"){ + if (mrdtotalentries > tanktotalentries && BuildType != "MRD" && BuildType != "MRDAndCTC"){ std::cout << "LoadRawData tool ERROR: More MRD entries than VME entries! Stopping toolchain" << std::endl; m_data->vars.Set("StopLoop",1); }