Changeset 10758 for trunk/FACT++
- Timestamp:
- 05/20/11 11:27:17 (14 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Fits.cc
r10741 r10758 96 96 fFile = new FITS(fileName, RWmode::Write); 97 97 } 98 catch (CCfits::FitsE rrore)98 catch (CCfits::FitsException e) 99 99 { 100 100 stringstream str; … … 177 177 } 178 178 } 179 catch(CCfits::FitsE rrore)179 catch(CCfits::FitsException e) 180 180 { 181 181 stringstream str; … … 203 203 fTable->addKey(name, value, comment); 204 204 } 205 catch (CCfits::FitsE rrore)205 catch (CCfits::FitsException e) 206 206 { 207 207 stringstream str; -
trunk/FACT++/src/dataLogger.cc
r10741 r10758 1635 1635 (fNumSubAndFitsData.numOpenFits)++; 1636 1636 } 1637 catch (CCfits::FitsE rrore)1637 catch (CCfits::FitsException e) 1638 1638 { 1639 1639 stringstream str; … … 1934 1934 groupTable = groupFile->addTable("GROUPING", numFilesToGroup, names, dataTypes); 1935 1935 } 1936 catch (CCfits::FitsE rrore)1936 catch (CCfits::FitsException e) 1937 1937 { 1938 1938 stringstream str; … … 2280 2280 ; 2281 2281 2282 po::options_description configs(" Scheduler options");2282 po::options_description configs("DataLogger options"); 2283 2283 configs.add_options() 2284 2284 ("block,b", vars<string>(), "Black-list of services")
Note:
See TracChangeset
for help on using the changeset viewer.