Changeset 12967 for trunk


Ignore:
Timestamp:
02/29/12 10:30:19 (13 years ago)
Author:
tbretz
Message:
Fixed some trivial compiler warnings.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc

    r12917 r12967  
    7171{
    7272    GLfloat color[3];
    73     int first, second;
     73    int first;
    7474    first = vertex-1;
    7575    if (first < 0)
     
    683683
    684684template <typename T>
    685 void RawDataViewer::getCalibrationDataForDisplay(const CalibDataTypes calibTypes,
     685void RawDataViewer::getCalibrationDataForDisplay(const CalibDataTypes/* calibTypes*/,
    686686                                                 const vector<T>& inputData,
    687687                                                 const int roi,
     
    750750    //hide the time markers
    751751    int nSlicesToRemove = 60;
    752     float* backupData;
     752    float* backupData = 0;
    753753    if (nRoiTM == 0) //they are written into the regular channel
    754754    {
  • trunk/FACT++/src/fitsdump.cc

    r12943 r12967  
    355355#endif
    356356
    357         ostringstream out;
    358         out.precision(fout.precision());
     357        ostringstream sout;
     358        sout.precision(fout.precision());
    359359        for (auto it=cols.begin(); it!=cols.end(); it++)
    360360        {
     
    368368                    break;
    369369                case 'B':
    370                     out << (unsigned int)reinterpret_cast<const unsigned char*>(it->ptr)[i] << " ";
     370                    sout << (unsigned int)reinterpret_cast<const unsigned char*>(it->ptr)[i] << " ";
    371371                    break;
    372372                case 'L':
    373                     out << reinterpret_cast<const bool*>(it->ptr)[i] << " ";
     373                    sout << reinterpret_cast<const bool*>(it->ptr)[i] << " ";
    374374                    break;
    375375                case 'I':
    376                     out << reinterpret_cast<const int16_t*>(it->ptr)[i] << " ";
     376                    sout << reinterpret_cast<const int16_t*>(it->ptr)[i] << " ";
    377377                    break;
    378378                case 'J':
    379                     out << reinterpret_cast<const int32_t*>(it->ptr)[i] << " ";
     379                    sout << reinterpret_cast<const int32_t*>(it->ptr)[i] << " ";
    380380                    break;
    381381                case 'K':
    382                     out << reinterpret_cast<const int64_t*>(it->ptr)[i] << " ";
     382                    sout << reinterpret_cast<const int64_t*>(it->ptr)[i] << " ";
    383383                    break;
    384384                case 'E':
    385                     out << reinterpret_cast<const float*>(it->ptr)[i] << " ";
     385                    sout << reinterpret_cast<const float*>(it->ptr)[i] << " ";
    386386                    break;
    387387                case 'D':
    388                     out << reinterpret_cast<const double*>(it->ptr)[i] << " ";
     388                    sout << reinterpret_cast<const double*>(it->ptr)[i] << " ";
    389389                    break;
    390390                default:
     
    399399
    400400            if (it->col.type=='A')
    401                 out << "'" << msg << "' ";
     401                sout << "'" << msg << "' ";
    402402        }
    403403#ifdef HAVE_ROOT
     
    405405            continue;
    406406#endif
    407         fout << out.str() << endl;
     407        fout << sout.str() << endl;
    408408    }
    409409}
     
    424424        *it = ' '+*it;
    425425
    426         string::const_iterator beg = it->begin();
    427         string::const_iterator end = it->end();
     426        string::const_iterator ibeg = it->begin();
     427        string::const_iterator iend = it->end();
    428428
    429429        boost::smatch what;
    430         while (boost::regex_search(beg, end, what, expr, boost::match_extra))
     430        while (boost::regex_search(ibeg, iend, what, expr, boost::match_extra))
    431431        {
    432432            const string all  = what[0];
     
    438438            if (ic==cols.end())
    439439            {
    440                 beg++;
     440                ibeg++;
    441441                //cout << "Column '" << name << "' does not exist." << endl;
    442442                //return vector<MyColumn>();
     
    458458            id << '[' << p << ']';
    459459
    460             it->replace(beg-it->begin()+what.position(1), what.length()-1, id.str());
    461 
    462             beg = what[0].first+3;
    463             end = it->end();
     460            it->replace(ibeg-it->begin()+what.position(1), what.length()-1, id.str());
     461
     462            ibeg = what[0].first+3;
     463            iend = it->end();
    464464
    465465            if (p<vec.size())
     
    575575            break;
    576576
    577         //data[p++] = first-1;
    578 
    579         ostringstream out;
    580         out.precision(fout.precision());
    581 
    582577        size_t p = 0;
    583578        for (auto it=vec.begin(); it!=vec.end(); it++, p++)
     
    590585
    591586        for (auto iform=form.begin()+1; iform!=form.end(); iform++)
    592             out << iform->EvalPar(0, data.data()) << " ";
    593 
    594         fout << out.str() << endl;
     587            fout << iform->EvalPar(0, data.data()) << " ";
     588
     589        fout << endl;
    595590    }
    596591#endif
  • trunk/Mars/mcore/DrsCalib.h

    r12946 r12967  
    573573            for (auto it=beg; it!=end-512; it++, n++)
    574574            {
    575                 const double v = it->first;
    576                 const double w = it->second;
     575                const double valv = it->first;
     576                const double valw = it->second;
    577577
    578578                it->first = sumv>0 ? n*(1-s*sumw/sumv) :0;
    579579
    580                 sumw += w;
    581                 sumv += v;
     580                sumv += valv;
     581                sumw += valw;
    582582            }
    583583
     
    588588            for (auto it=end-1; it!=beg-1+512; it--, n++)
    589589            {
    590                 const double v = it->first;
    591                 const double w = it->second;
    592 
    593                 sumw += w;
    594                 sumv += v;
     590                const double valv = it->first;
     591                const double valw = it->second;
     592
     593                sumv += valv;
     594                sumw += valw;
    595595
    596596                it->first = sumv>0 ? n*(s*sumw/sumv-1) : 0;
Note: See TracChangeset for help on using the changeset viewer.