Skip to content

Commit 252382f

Browse files
committed
Add missing std:: qualifiers
1 parent ce88e12 commit 252382f

27 files changed

+1974
-1974
lines changed

CalibCalorimetry/EcalCorrelatedNoiseAnalysisAlgos/interface/TEcnaGui.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -179,20 +179,20 @@
179179
/// TEcnaParPaths* pCnaParPaths = new TEcnaParPaths(MyEcnaObjectManager);
180180
/// if( pCnaParPaths->GetPaths() == kTRUE )
181181
/// {
182-
/// cout << "*EcnaGuiEB> Starting ROOT session" << endl;
182+
/// std::cout << "*EcnaGuiEB> Starting ROOT session" << std::endl;
183183
/// TRint theApp("App", &argc, argv);
184184
///
185-
/// cout << "*EcnaGuiEB> Starting ECNA session" << endl;
185+
/// std::cout << "*EcnaGuiEB> Starting ECNA session" << std::endl;
186186
/// TEcnaGui* mainWin = new TEcnaGui(MyEcnaObjectManager, "EB", gClient->GetRoot(), 395, 710);
187187
/// mainWin->DialogBox();
188188
/// Bool_t retVal = kTRUE;
189189
/// theApp.Run(retVal);
190-
/// cout << "*EcnaGuiEB> End of ECNA session." << endl;
190+
/// std::cout << "*EcnaGuiEB> End of ECNA session." << std::endl;
191191
/// delete mainWin;
192192
///
193-
/// cout << "*EcnaGuiEB> End of ROOT session." << endl;
193+
/// std::cout << "*EcnaGuiEB> End of ROOT session." << std::endl;
194194
/// theApp.Terminate(0);
195-
/// cout << "*EcnaGuiEB> Exiting main program." << endl;
195+
/// std::cout << "*EcnaGuiEB> Exiting main program." << std::endl;
196196
/// exit(0);
197197
/// }
198198
/// }
@@ -878,7 +878,7 @@ class TEcnaGui : public TGMainFrame {
878878

879879
//==================================================== Miscellaneous parameters
880880

881-
//ofstream fFcout_f;
881+
//std::ofstream fFcout_f;
882882

883883
TString fKeyAnaType; // Type of analysis
884884

CalibCalorimetry/EcalCorrelatedNoiseAnalysisAlgos/interface/TEcnaParPaths.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ class TEcnaParPaths : public TObject {
3636

3737
Int_t fCnaCommand, fCnaError;
3838

39-
ifstream fFcin_rr; // stream for results root files
40-
ifstream fFcin_ra; // stream for results ascii files
41-
ifstream fFcin_lor; // stream for list of runs files
42-
// ifstream fFcin_anapar; // stream for EcnaAnalyzer parameters files
43-
ifstream fFcin_cmssw; // stream for cmssw version and subsystem
39+
std::ifstream fFcin_rr; // stream for results root files
40+
std::ifstream fFcin_ra; // stream for results ascii files
41+
std::ifstream fFcin_lor; // stream for list of runs files
42+
// std::ifstream fFcin_anapar; // stream for EcnaAnalyzer parameters files
43+
std::ifstream fFcin_cmssw; // stream for cmssw version and subsystem
4444

4545
TString fCfgResultsRootFilePath; // absolute path for the results .root files (/afs/etc...)
4646
TString fFileForResultsRootFilePath; // name of the file containing the results .root file path

CalibCalorimetry/EcalCorrelatedNoiseAnalysisAlgos/interface/TEcnaRead.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
///
9797
/// if( MyCnaRead->LookAtRootFile() == kFALSE )
9898
/// {
99-
/// cout << "*** ERROR: ROOT file not found" << endl;
99+
/// std::cout << "*** ERROR: ROOT file not found" << std::endl;
100100
/// }
101101
/// else
102102
/// {
@@ -122,7 +122,7 @@
122122
/// }
123123
/// else
124124
/// {
125-
/// cout << "problem while reading file. data not available. " << endl;
125+
/// std::cout << "problem while reading file. data not available. " << std::endl;
126126
//// }
127127
///
128128
/// }

CalibCalorimetry/EcalCorrelatedNoiseAnalysisAlgos/interface/TEcnaRun.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ class TEcnaRun: public TObject {
504504
Int_t** fT2dCrysNumbersTable;
505505
Int_t* fT1dCrysNumbersTable;
506506

507-
ofstream fFcout_f;
507+
std::ofstream fFcout_f;
508508

509509
Int_t fFlagPrint;
510510
Int_t fCodePrintComments, fCodePrintWarnings, fCodePrintAllComments, fCodePrintNoComment;

CalibCalorimetry/EcalCorrelatedNoiseAnalysisAlgos/interface/TEcnaWrite.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class TEcnaWrite : public TObject {
5858
TEcnaParPaths *fCnaParPaths;
5959
TEcnaParCout *fCnaParCout;
6060

61-
ofstream fFcout_f;
61+
std::ofstream fFcout_f;
6262

6363
//...................................... Codes for file names
6464
Int_t fCodeHeaderAscii;

0 commit comments

Comments
 (0)