Changeset 12699 for trunk


Ignore:
Timestamp:
12/05/11 08:43:55 (13 years ago)
Author:
tbretz
Message:
Adapted sign of offset to currently used GAPDmap_20111126.txt
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/PixelMap.h

    r12531 r12699  
    262262    {
    263263        const BiasMapEntry &entry = hv(board, channel);
    264         return entry.Vnom+entry.Voff;
     264        //return entry.Vnom/*-entry.Voff*/; // for testing purposes only
     265        return entry.Vnom - entry.Voff; // use this with GAPDmap_20111126.txt
    265266    }
    266267
     
    277278        {
    278279            const int ch = it->hv_board*32 + it->hv_channel;
    279             volt[ch] += it->Vnom+it->Voff;
     280           
     281            //volt[ch] += it->Vnom/*-it->Voff*/; // for testing purposes only
     282            volt[ch] += it->Vnom - it->Voff; // use this with GAPDmap_20111126.txt
    280283        }
    281284
Note: See TracChangeset for help on using the changeset viewer.