diff --git a/etc/scdaq/scdaq.conf b/etc/scdaq/scdaq.conf
index 71647b673a65737d88fef183882753ea084a7ecf..e3b23a400c219a97ce03dbbc7382b15b5ee91c37 100644
--- a/etc/scdaq/scdaq.conf
+++ b/etc/scdaq/scdaq.conf
@@ -95,3 +95,6 @@ quality_cut:12
 
 # Pipeline settings
 threads:8
+
+#verbosity level, currently supports 0 and 1
+verbosity:0
diff --git a/scripts/fileMover.py b/scripts/fileMover.py
index 384f7c25aea5bad23f1655d657d485bf84a8721e..340c9ec63fab63357b0548d095a694dd898d93ae 100755
--- a/scripts/fileMover.py
+++ b/scripts/fileMover.py
@@ -16,7 +16,20 @@ if __name__ == "__main__":
             for f in onlyfiles:
                 full_filename = join('/fff/ramdisk/scdaq', f)
                 outfile = f+'.bz2'
-                dest_name = join('/fff/output/scdaq',outfile)
+
+                if f[7:10] == 'GMT':
+                    run_number = f[10:16]
+                elif f[7:11] == 'CALO':
+                    run_number = f[11:17]
+                else:
+                    run_number = '000000'
+
+                dest_path = join('/store/lustre/l1scout/scdaq/',run_number)
+
+                if not (os.path.exists(dest_path)):
+                    os.mkdir(dest_path)
+
+                dest_name = join(dest_path,outfile) 
                 command = "lbzip2 "+full_filename+" -c > "+dest_name
                 print "compressing "+full_filename
                 retval = os.system(command)
diff --git a/src/config.h b/src/config.h
index 8311584db4decb9a74837f6bb4e3d86dcb3f2e8f..0ba19dd2230cbcd7710a9fad8641f57620c92047 100644
--- a/src/config.h
+++ b/src/config.h
@@ -121,6 +121,10 @@ public:
   bool getDoZS() const {
     return (true ? vmap.at("doZS") == "yes" : false);
   }
+  bool getVerbosity() const {
+    std::string v = vmap.at("verbosity");
+    return boost::lexical_cast<uint32_t>(v.c_str());  
+  }
 private:
   
   std::map<std::string,std::string> vmap;
diff --git a/src/controls.h b/src/controls.h
index 8dbdae250f65496af5f078456d3d4186f9386eab..6f311bb90337a928ac6b4035cf760cc14ec9507b 100644
--- a/src/controls.h
+++ b/src/controls.h
@@ -8,10 +8,12 @@ struct ctrl {
   std::atomic<bool> running;
   /* Always write data to a file regardless of the run status */
   bool output_force_write;
+  bool verbosity;
   uint64_t max_file_size;
   int packets_per_report;
   int n_orbits_per_dma_packet;
   std::atomic<uint32_t> orbit_trailer_error_count;
   std::atomic<uint64_t> packet_count;
+  std::atomic<uint64_t> excessOrbitsPerPacketCount;
 };
 #endif 
diff --git a/src/processor.cc b/src/processor.cc
index 67d24dd9e2bfd63fa65a4cc9e2cb204c3fdd6d7b..b1315db629a14dd5e2ffc5e0f95e5b06ce814b75 100644
--- a/src/processor.cc
+++ b/src/processor.cc
@@ -62,7 +62,9 @@ std::vector<unsigned int> StreamProcessor::CountBX(Slice& input, char* rd_ptr, b
 		if(bl->orbit[0]==constants::beefdead){ // found orbit trailer
 			orbit_trailer *ot = (orbit_trailer*)(rd_ptr);
 			for (unsigned int k = 0; k < (14*8); k++){ // 14*8 = 14 frames, 8 links of orbit trailer containing BX hitmap
-				bit_check(&bx_vect, ot->bx_map[k], k*32);
+				//bit_check(&bx_vect, ot->bx_map[k], (k*32 + 1));// +1 added to account for BX counting starting at 1, commented out until firmware fix for BX number being one more in the trailer than the CMS convention 
+				bit_check(&bx_vect, ot->bx_map[k], (k*32));
+
 			}
 			return bx_vect;
 		}
@@ -94,10 +96,12 @@ uint32_t StreamProcessor::FillOrbitCalo(std::vector<unsigned int>& bx_vect, char
 		blockCalo *bl = reinterpret_cast<blockCalo*>(rd_ptr);
 		if(bl->calo0[0]==constants::beefdead){break;} // orbit trailer has been reached, end of orbit data
 		uint32_t bx = uint32_t{bx_vect[relbx]};
+		uint32_t orbit = uint32_t{orbit_header.first};
+		if (bx > 3554){orbit--;} //fix for the fact that bx 3555 - 3564 are from the previous orbit
 		uint32_t header = uint32_t{orbit_header.second}; //header can be added to later
 		memcpy(wr_ptr,(char*)&header,4); wr_ptr+=4;
 		memcpy(wr_ptr,(char*)&bx,4); wr_ptr+=4;
-		memcpy(wr_ptr,(char*)&orbit_header.first,4); wr_ptr+=4;
+		memcpy(wr_ptr,(char*)&orbit,4); wr_ptr+=4;
 		for(uint32_t i = 0; i < 8; i++){
 			memcpy(wr_ptr,(char*)&i,4); wr_ptr+=4; //gives link number, can later be used to find object type
 			memcpy(wr_ptr,(char*)&bl->calo0[i],4); wr_ptr+=4;
@@ -132,12 +136,14 @@ uint32_t StreamProcessor::FillOrbitMuon(std::vector<unsigned int>& bx_vect, char
 		bool AblocksOn[8];
 		bool BblocksOn[8];
 		uint32_t bx = uint32_t {bx_vect[relbx]};
+		if (bx > 3554){orbit--;} //fix for the fact that bx 3555 - 3564 are from the previous orbit
 		for(unsigned int i = 0; i < 8; i++){
 			uint32_t bxA = (bl->bx[i] >> shifts::bx) & masks::bx;
-		        if((bxA != bx) &&  (i == 0)){
-                        	LOG(WARNING) << "BX mismatch, uGMT data word BX = " << std::hex << bxA <<
+		        if((bxA != bx) &&  (i == 0) && (bx<3555) && control.verbosity){ //only prints warning when BX < 3555 i.e from the same orbit
+				LOG(WARNING) << "BX mismatch, uGMT data word BX = " << std::hex << bxA <<
 				", BX extracted from trailer = "<< bx << ", orbitN is " << std::dec << orbit;
-                        }	
+                        }
+			
 			uint32_t pt = uint32_t{(bl->mu1f[i] >> shifts::pt) & masks::pt};
 			
 			AblocksOn[i]=((pt>0) || (doZS==0));
@@ -255,9 +261,15 @@ void StreamProcessor::process(Slice& input, Slice& out)
 			}
 
 			if(orbit_per_packet_count > nOrbitsPerDMAPacket){                        
-				LOG(WARNING) << "expected DMA trailer word deadbeef, found " 
-				<< std::hex << *dma_trailer_word << ". Orbits per packet count " 
-				<< orbit_per_packet_count  << ", > expected, (" << nOrbitsPerDMAPacket <<") skipping packet.";
+				if(control.verbosity){
+					LOG(WARNING) << "expected DMA trailer word deadbeef, found " 
+					<< std::hex << *dma_trailer_word << ". Orbits per packet count " 
+					<< orbit_per_packet_count  << ", > expected, (" << nOrbitsPerDMAPacket <<") skipping packet.";
+				}
+				control.excessOrbitsPerPacketCount++;
+				if(control.excessOrbitsPerPacketCount%10000 == 0){
+					LOG(WARNING) << "count of packets with excess # orbits " << control.excessOrbitsPerPacketCount;
+				}
 				return;
 			}		
 		}
diff --git a/src/scdaq.cc b/src/scdaq.cc
index c18719af4fd042962c5002a7cddd487a6989985a..8cac5f185fc22fb2b1580a2418ebc91d013a1a5d 100644
--- a/src/scdaq.cc
+++ b/src/scdaq.cc
@@ -146,6 +146,9 @@ if(argc < 2){
     control.packets_per_report = conf.getPacketsPerReport();
     control.output_force_write = conf.getOutputForceWrite();
     control.n_orbits_per_dma_packet = conf.getNOrbitsPerDMAPacket();
+    control.verbosity = conf.getVerbosity();
+    control.excessOrbitsPerPacketCount = 0;
+
     // Firmware needs at least 1MB buffer for DMA
     if (conf.getDmaPacketBufferSize() < 1024*1024) {
       LOG(ERROR) << "dma_packet_buffer_size must be at least 1048576 bytes (1MB), but " << conf.getDmaPacketBufferSize() << " bytes was given. Check the configuration file.";
diff --git a/test/config/scdaq-calo.conf b/test/config/scdaq-calo.conf
index 8d8d08abdee32d6b8ad9d0183215d26691905848..f00c1e63e9ae9d673fd713ffb5ab4cf281963faa 100644
--- a/test/config/scdaq-calo.conf
+++ b/test/config/scdaq-calo.conf
@@ -94,3 +94,6 @@ quality_cut:12
 
 # Pipeline settings
 threads:8
+
+# verbosity level, currently supports 0 and 1
+verbosity:1
diff --git a/test/config/scdaq-gmt.conf b/test/config/scdaq-gmt.conf
index cec8f07db8cfa5745822f54ef49d9f24e4aa07d1..83344d93b8a4f871ffcef69ef8e4f881623738dd 100644
--- a/test/config/scdaq-gmt.conf
+++ b/test/config/scdaq-gmt.conf
@@ -95,3 +95,6 @@ quality_cut:12
 
 # Pipeline settings
 threads:8
+
+# verbosity level, currently supports 0 and 1
+verbosity:0