Skip to content

Commit

Permalink
Merge pull request #447 from cms-nanoAOD/branch_11_0_0_pre11
Browse files Browse the repository at this point in the history
Update master to CMSSW_11_0_0_pre11
  • Loading branch information
peruzzim authored Oct 30, 2019
2 parents 974479b + 5b0a828 commit 9e1351a
Show file tree
Hide file tree
Showing 1,145 changed files with 16,161 additions and 69,003 deletions.
1 change: 0 additions & 1 deletion Alignment/APEEstimation/BuildFile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<use name="TrackingTools/TrajectoryState"/>
<use name="Geometry/CommonDetUnit"/>
<use name="Geometry/CommonTopologies"/>
<use name="Geometry/TrackerGeometryBuilder"/>
<use name="CondFormats/Alignment"/>
<use name="RecoLocalTracker/SiStripClusterizer"/>
<use name="RecoLocalTracker/SiStripRecHitConverter"/>
Expand Down
2 changes: 1 addition & 1 deletion Alignment/APEEstimation/plugins/ApeEstimator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
//added by Ajay 6Nov 2014
//.......................
#include "Geometry/CommonTopologies/interface/PixelTopology.h"
#include "Geometry/TrackerGeometryBuilder/interface/PixelGeomDetUnit.h"
#include "Geometry/CommonDetUnit/interface/PixelGeomDetUnit.h"

#include "CondFormats/AlignmentRecord/interface/TrackerAlignmentErrorExtendedRcd.h"

Expand Down
2 changes: 0 additions & 2 deletions Alignment/CommonAlignmentMonitor/plugins/BuildFile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@
<use name="DataFormats/CSCRecHit"/>
<use name="DataFormats/DTRecHit"/>
<use name="DataFormats/TrackingRecHit"/>
<use name="Geometry/TrackerGeometryBuilder"/>
<use name="Geometry/DTGeometry"/>
<use name="Geometry/CSCGeometry"/>
<use name="Geometry/CommonDetUnit"/>
Expand All @@ -104,7 +103,6 @@

<library name="AlignmentStats" file="AlignmentStats.cc">
<use name="FWCore/Utilities"/>
<use name="Geometry/TrackerGeometryBuilder"/>
<use name="Geometry/Records"/>
<use name="Alignment/CommonAlignment"/>
<use name="Alignment/TrackerAlignment"/>
Expand Down
1 change: 0 additions & 1 deletion Alignment/CommonAlignmentProducer/BuildFile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<use name="FWCore/ServiceRegistry"/>
<use name="DataFormats/Alignment"/>
<use name="Geometry/Records"/>
<use name="Geometry/TrackerGeometryBuilder"/>
<use name="rootcore"/>
<use name="root"/>
<export>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def checked_out_MPS():
git_initialized = False
try:
with open(checked_out_packages, "r") as f:
packages = ("/Alignment/", "/Alignment/MillePedeAlignmentAlgorithm/")
packages = ("/Alignment/", "/Alignment/MillePedeAlignmentAlgorithm/","/*/")
for line in f:
if line.strip() in packages:
checked_out = True
Expand Down
2 changes: 1 addition & 1 deletion Alignment/OfflineValidation/bin/DMRtrends.cc
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ const map<TString, int> numberOfLayers(TString Year) {
*/

TString lumifileperyear(TString Year, string RunOrIOV) {
TString LumiFile = getenv("CMSSW_BASE");
TString LumiFile = std::getenv("CMSSW_BASE");
LumiFile += "/src/Alignment/OfflineValidation/data/lumiper";
if (RunOrIOV != "run" && RunOrIOV != "IOV") {
cout << "ERROR: Please specify \"run\" or \"IOV\" to retrieve the luminosity run by run or for each IOV" << endl;
Expand Down
4 changes: 2 additions & 2 deletions Alignment/OfflineValidation/plugins/OverlapValidation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include "CalibTracker/SiStripCommon/interface/SiStripDetInfoFileReader.h"

#include "Geometry/TrackerGeometryBuilder/interface/PixelGeomDetUnit.h"
#include "Geometry/TrackerGeometryBuilder/interface/PixelGeomDetType.h"
#include "Geometry/CommonDetUnit/interface/PixelGeomDetUnit.h"
#include "Geometry/CommonDetUnit/interface/PixelGeomDetType.h"
#include "Geometry/CommonDetUnit/interface/GeomDetType.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
#include "Geometry/TrackerGeometryBuilder/interface/RectangularPixelTopology.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ void TEcnaParPaths::GetCMSSWParameters() {

//------------ CMSSW_BASE

char *ch_cmssw_base = getenv("CMSSW_BASE");
char *ch_cmssw_base = std::getenv("CMSSW_BASE");
if (ch_cmssw_base == nullptr) {
std::cout << "*TEcnaParPaths::GetCMSSWParameters()> CMSSW_BASE not defined."
<< " Please, set up the environment (command: eval `scramv1 runtime -csh`)" << fTTBELL << std::endl;
Expand All @@ -330,7 +330,7 @@ void TEcnaParPaths::GetCMSSWParameters() {

//------------ SCRAM_ARCH

char *ch_scram_arch = getenv("SCRAM_ARCH");
char *ch_scram_arch = std::getenv("SCRAM_ARCH");
if (ch_scram_arch == nullptr) {
std::cout << "*TEcnaParPaths::GetCMSSWParameters()> SCRAM_ARCH not defined."
<< " Please, set up the environment (command: eval `scramv1 runtime -csh`)" << fTTBELL << std::endl;
Expand Down
6 changes: 3 additions & 3 deletions CalibCalorimetry/EcalLaserAnalyzer/src/ME.cc
Original file line number Diff line number Diff line change
Expand Up @@ -63,22 +63,22 @@ std::vector<MEChannel*> ME::_trees = std::vector<MEChannel*>(4, (MEChannel*)null
bool ME::useElectronicNumbering = false;

TString ME::lmdataPath(int lmr) {
TString out_(getenv("MELMDAT"));
TString out_(std::getenv("MELMDAT"));
out_ += "/";
out_ += ME::smName(lmr);
out_ += "/";
return out_;
}

TString ME::primPath(int lmr) {
TString out_(getenv("MESTORE"));
TString out_(std::getenv("MESTORE"));
out_ += "/";
out_ += ME::smName(lmr);
out_ += "/";
return out_;
}

TString ME::path() { return TString(getenv("MUSECAL")) + "/"; }
TString ME::path() { return TString(std::getenv("MUSECAL")) + "/"; }

TString ME::rootFileName(ME::Header header, ME::Settings settings) {
// get the laser monitoring region and super-module
Expand Down
Loading

0 comments on commit 9e1351a

Please sign in to comment.