Changeset 11761 for trunk/FACT++/src


Ignore:
Timestamp:
08/03/11 19:57:50 (13 years ago)
Author:
tbretz
Message:
Fixed the light pulser control (DimStaticData)
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/HeadersFTM.cc

    r11760 r11761  
    131131    out << "Time marker delay: " << fDelayTimeMarker*4+8 << "ns" << endl;
    132132    out << "Dead time:         " << fDeadTime*4+8 << "ns" << endl;
    133     out << "Light pulser (int): " << dec << fIntensityLPint;
     133    out << "Light pulser (int): " << dec << (int)fIntensityLPint;
    134134    if (fEnableLPint&kGroup1)
    135         out << " - Group1 ";
     135        out << " + Group1";
    136136    if (fEnableLPint&kGroup2)
    137         out << " - Group2 ";
     137        out << " + Group2";
    138138    out << endl;
    139     out << "Light pulser (ext): " << dec << fIntensityLPext;
     139    out << "Light pulser (ext): " << dec << (int)fIntensityLPext;
    140140    if (fEnableLPext&kGroup1)
    141         out << " - Group1 ";
     141        out << " + Group1";
    142142    if (fEnableLPext&kGroup2)
    143         out << " - Group2 ";
     143        out << " + Group2";
    144144    out << endl;
    145145    out << "Clock conditioner:";
  • trunk/FACT++/src/HeadersFTM.h

    r11731 r11761  
    429429            fEnableLPint(d.fEnableLPint),
    430430            fEnableLPext(d.fEnableLPext),
    431             fIntensityLPint(d.fIntensityLPext),
     431            fIntensityLPint(d.fIntensityLPint),
    432432            fIntensityLPext(d.fIntensityLPext),
    433433            fMultiplicityPhysics(d.fMultiplicityPhysics),
Note: See TracChangeset for help on using the changeset viewer.