CMS 3D CMS Logo

Functions
gemGeometryCustoms Namespace Reference

Functions

def geomReplace (process, key, targetXML)
 change the current default GEM geometry More...
 

Function Documentation

◆ geomReplace()

def gemGeometryCustoms.geomReplace (   process,
  key,
  targetXML 
)

change the current default GEM geometry

Definition at line 5 of file gemGeometryCustoms.py.

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 

References print().

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