Ignore:
Timestamp:
09/01/14 13:44:46 (10 years ago)
Author:
dneise
Message:
these modifications I found in the Mars.svn.2014.05.26 folder of Simona and added them to this branch without further thinking about them. 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Mars_McMismatchStudy/mcore/PixelMap.h

    r17009 r17962  
    2727    int   cbpx;                /// Hardware index as CBPX
    2828    int   gapd;                /// gAPD index
    29 //    float Vgapd;               /// gAPD Bias voltage
     29    float Vgapd;               /// gAPD Bias voltage
    3030    int   hv_board;            /// Bias suppply board
    3131    int   hv_channel;
     
    4141    int count() const { return pixel()>3 ? 5 : 4; }
    4242    int hv() const    { return hv_channel+hv_board*32; }
     43    bool isTM() const { return pixel()%9==8; }
    4344
    4445    operator bool() const { return index>=0; }
     
    7475            std::stringstream str(buf);
    7576
    76             int     idummy;
    77             float   fdummy;
     77            int idummy;
    7878
    7979            PixelMapEntry entry;
     
    8484            str >> idummy;
    8585            str >> entry.gapd;
    86             str >> fdummy; //entry.Vgapd;
     86            str >> entry.Vgapd;
    8787            str >> entry.hv_board;
    8888            str >> entry.hv_channel;
     
    228228        std::ifstream fin(fname);
    229229
    230         int l = 0;
     230        long long int l = 0;
    231231
    232232        std::string buf;
Note: See TracChangeset for help on using the changeset viewer.