CMS 3D CMS Logo

gemGeometryCustoms.py
Go to the documentation of this file.
1 from __future__ import print_function
2 import FWCore.ParameterSet.Config as cms
3 
4 
5 def geomReplace(process, key, targetXML) :
6  mynum=-1
7  originalXML=''
8  for i, xml in enumerate( process.XMLIdealGeometryESSource.geomXMLFiles) :
9  if ( xml.find(key) != -1 ) :
10  mynum, originalXML = i, xml
11  break
12  if ( mynum != -1 and originalXML != targetXML ) :
13  print("Changing Geometry from %s to %s"%(originalXML, targetXML))
14  process.XMLIdealGeometryESSource.geomXMLFiles.remove(originalXML)
15  process.XMLIdealGeometryESSource.geomXMLFiles.insert(mynum,targetXML)
16  if ( mynum == -1) :
17  print("Alert! key is not found on XMLIdealGeometryESSource")
18  return process
19 
gemGeometryCustoms.geomReplace
def geomReplace(process, key, targetXML)
change the current default GEM geometry
Definition: gemGeometryCustoms.py:5
print
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:46