Skip to content

Commit

Permalink
Merge branch 'CMSSW_7_1_X' of https://github.com/cms-sw/cmssw into 71…
Browse files Browse the repository at this point in the history
…X-photon

Use this branch in CMSSW_7_1_X_2014-02-06-0200 or later.
  • Loading branch information
Volker Adler committed Feb 6, 2014
2 parents 5816abb + 76b8a37 commit 598a1de
Show file tree
Hide file tree
Showing 154 changed files with 15,707 additions and 7,229 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,20 +179,20 @@
/// TEcnaParPaths* pCnaParPaths = new TEcnaParPaths(MyEcnaObjectManager);
/// if( pCnaParPaths->GetPaths() == kTRUE )
/// {
/// cout << "*EcnaGuiEB> Starting ROOT session" << endl;
/// std::cout << "*EcnaGuiEB> Starting ROOT session" << std::endl;
/// TRint theApp("App", &argc, argv);
///
/// cout << "*EcnaGuiEB> Starting ECNA session" << endl;
/// std::cout << "*EcnaGuiEB> Starting ECNA session" << std::endl;
/// TEcnaGui* mainWin = new TEcnaGui(MyEcnaObjectManager, "EB", gClient->GetRoot(), 395, 710);
/// mainWin->DialogBox();
/// Bool_t retVal = kTRUE;
/// theApp.Run(retVal);
/// cout << "*EcnaGuiEB> End of ECNA session." << endl;
/// std::cout << "*EcnaGuiEB> End of ECNA session." << std::endl;
/// delete mainWin;
///
/// cout << "*EcnaGuiEB> End of ROOT session." << endl;
/// std::cout << "*EcnaGuiEB> End of ROOT session." << std::endl;
/// theApp.Terminate(0);
/// cout << "*EcnaGuiEB> Exiting main program." << endl;
/// std::cout << "*EcnaGuiEB> Exiting main program." << std::endl;
/// exit(0);
/// }
/// }
Expand Down Expand Up @@ -878,7 +878,7 @@ class TEcnaGui : public TGMainFrame {

//==================================================== Miscellaneous parameters

//ofstream fFcout_f;
//std::ofstream fFcout_f;

TString fKeyAnaType; // Type of analysis

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class TEcnaParPaths : public TObject {

Int_t fCnaCommand, fCnaError;

ifstream fFcin_rr; // stream for results root files
ifstream fFcin_ra; // stream for results ascii files
ifstream fFcin_lor; // stream for list of runs files
// ifstream fFcin_anapar; // stream for EcnaAnalyzer parameters files
ifstream fFcin_cmssw; // stream for cmssw version and subsystem
std::ifstream fFcin_rr; // stream for results root files
std::ifstream fFcin_ra; // stream for results ascii files
std::ifstream fFcin_lor; // stream for list of runs files
// std::ifstream fFcin_anapar; // stream for EcnaAnalyzer parameters files
std::ifstream fFcin_cmssw; // stream for cmssw version and subsystem

TString fCfgResultsRootFilePath; // absolute path for the results .root files (/afs/etc...)
TString fFileForResultsRootFilePath; // name of the file containing the results .root file path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
///
/// if( MyCnaRead->LookAtRootFile() == kFALSE )
/// {
/// cout << "*** ERROR: ROOT file not found" << endl;
/// std::cout << "*** ERROR: ROOT file not found" << std::endl;
/// }
/// else
/// {
Expand All @@ -122,7 +122,7 @@
/// }
/// else
/// {
/// cout << "problem while reading file. data not available. " << endl;
/// std::cout << "problem while reading file. data not available. " << std::endl;
//// }
///
/// }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ class TEcnaRun: public TObject {
Int_t** fT2dCrysNumbersTable;
Int_t* fT1dCrysNumbersTable;

ofstream fFcout_f;
std::ofstream fFcout_f;

Int_t fFlagPrint;
Int_t fCodePrintComments, fCodePrintWarnings, fCodePrintAllComments, fCodePrintNoComment;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class TEcnaWrite : public TObject {
TEcnaParPaths *fCnaParPaths;
TEcnaParCout *fCnaParCout;

ofstream fFcout_f;
std::ofstream fFcout_f;

//...................................... Codes for file names
Int_t fCodeHeaderAscii;
Expand Down

0 comments on commit 598a1de

Please sign in to comment.