Skip to content
Snippets Groups Projects
Commit d9688ceb authored by Hass AbouZeid's avatar Hass AbouZeid
Browse files

Merge branch 'BMGChambers_20150501' into '21.0'

fixing tube counting for mezz type 50 and 60

See merge request !1879
parents 28a945cb bb8abe1d
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ bool MdtAmtMap::initMap(const MdtMezzanineType* mezType, uint8_t chanZero, int l
else {
layer = 4-chan%4 ;
}
if ( tubeZero == 1) {
if ( (tubeZero-1)%6 == 0) {
tube = tubeZero + int ( chan/4 );
}
else {
......@@ -123,7 +123,7 @@ bool MdtAmtMap::initMap(const MdtMezzanineType* mezType, uint8_t chanZero, int l
else {
layer = 4-chan%4 ;
}
if ( tubeZero == 1) {
if ( (tubeZero-1)%6 == 0) {
tube = tubeZero + int ( chan/4 );
}
else {
......
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