Skip to content
Snippets Groups Projects
Commit a41cd23c authored by Thomas Owen James's avatar Thomas Owen James
Browse files

fix for attempt to write large amount of data error

parent 58cfbd26
No related branches found
No related tags found
1 merge request!59CMSSW json file
......@@ -30,7 +30,7 @@ Slice* StreamProcessor::process(Slice& input, Slice& out)
if(systemName =="DMX"){
memcpy(q,p,input.size());
out.set_end(input.begin() + input.size());
out.set_end(out.begin() + input.size());
out.set_counts(1);
return &out;}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment