From 37bd98c559e42489bbbec6d16505aed1ce006a31 Mon Sep 17 00:00:00 2001 From: Martin Purschke Date: Tue, 10 Sep 2024 16:13:23 -0400 Subject: [PATCH] mlp - fixed a confusion bet ween words and bytes in the Eventiterator --- newbasic/rcdaqEventiterator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newbasic/rcdaqEventiterator.cc b/newbasic/rcdaqEventiterator.cc index 7501f86..7476fe7 100644 --- a/newbasic/rcdaqEventiterator.cc +++ b/newbasic/rcdaqEventiterator.cc @@ -178,7 +178,7 @@ int rcdaqEventiterator::read_next_buffer() } // say that this is our max size - int flag = htonl(2*64*1024*1024 + 2048); + int flag = htonl(512*1024*1024 + 2048); int status = writen (_sockfd,(char *) &flag, 4); if ( status < 0)