Skip to content

Commit

Permalink
Update LoadRawData.cpp (#301)
Browse files Browse the repository at this point in the history
Fix to allow event builder to construct MRD + CTC entries
  • Loading branch information
S81D authored Nov 18, 2024
1 parent 1188842 commit 5f7634d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UserTools/LoadRawData/LoadRawData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 5f7634d

Please sign in to comment.