Skip to content

Commit

Permalink
Merge remote branch 'origin/CMSSW_7_0_X' into CMSSW_7_0_X
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsbuild committed Jan 8, 2014
2 parents e03ad05 + 4ebc33e commit 3f2f1fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CommonTools/TrackerMap/bin/print_TrackerMap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void printTrackerMap(const std::string filename, const std::string title, const
if(withpixel=="Only") {themap.addPixel(false); themap.onlyPixel(true); ratio=16./9.;}
if(withpixel=="False") {themap.addPixel(false); themap.onlyPixel(false); ratio=8./15.;}

ifstream input(filename);
std::ifstream input(filename);

unsigned int detid;
float val;
Expand Down
2 changes: 1 addition & 1 deletion DQM/TrackingMonitorClient/plugins/TrackingAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ TrackingAnalyser::TrackingAnalyser(edm::ParameterSet const& ps) {
tkMapPSet_ = ps.getParameter<edm::ParameterSet>("TkmapParameters");

std::string localPath = std::string("DQM/TrackingMonitorClient/test/loader.html");
ifstream fin(edm::FileInPath(localPath).fullPath().c_str(), std::ios::in);
std::ifstream fin(edm::FileInPath(localPath).fullPath().c_str(), std::ios::in);
char buf[BUF_SIZE];

if (!fin) {
Expand Down
4 changes: 2 additions & 2 deletions DQM/TrackingMonitorClient/src/TrackingActionExecutor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void TrackingActionExecutor::fillStatusAtLumi(DQMStore* dqm_store) {
//
void TrackingActionExecutor::createDummyShiftReport(){
// std::cout << "[TrackingActionExecutor::createDummyShiftReport]" << std::endl;
ofstream report_file;
std::ofstream report_file;
report_file.open("tracking_shift_report.txt", std::ios::out);
report_file << " Nothing to report!!" << std::endl;
report_file.close();
Expand Down Expand Up @@ -111,7 +111,7 @@ void TrackingActionExecutor::createShiftReport(DQMStore * dqm_store){
shift_summary << std::endl;
printShiftHistoParameters(dqm_store, layout_map, shift_summary);

ofstream report_file;
std::ofstream report_file;
report_file.open("tracking_shift_report.txt", std::ios::out);
report_file << shift_summary.str() << std::endl;
report_file.close();
Expand Down

0 comments on commit 3f2f1fc

Please sign in to comment.