Skip to content
Snippets Groups Projects

Draft: Update Rich/RichMirrorAlignmentOnline for use during Run 3 (RICH-51, RICH-60)

Closed Paras Naik requested to merge pnaik_Run3MirrOnline_202205 into master
Compare and
3 files
+ 99
11
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -35,7 +35,7 @@ class XMLFileHelper:
self.whichRich) + '/MirrorAlign/'
def create_coeff_calibration_xml_files(self, inputFile, n_it):
print "INFO: start create coeff"
print("INFO: start create coeff")
writedir = self.alignConf.getProp('WorkDir')
coeffCalibTilt = self.alignConf.getProp('coeffCalibTilt')
thisNameStr = self.alignConf.getProp('nameStr')
@@ -129,7 +129,7 @@ class XMLFileHelper:
latest = self.getStartXMLOrigFileName()
latest = os.path.join(self.base_dir, latest)
print "INFO: This file was picked up as the starting xml: ", latest
print("INFO: This file was picked up as the starting xml: ", latest)
with open(startxml, 'w') as outfile:
outfile.write('<?xml version=\'1.0\' encoding=\'iso-8859-1\'?> \n')
@@ -137,7 +137,7 @@ class XMLFileHelper:
'<!DOCTYPE DDDB SYSTEM "conddb:/DTD/structure.dtd"> \n')
outfile.write('<DDDB> \n')
if not os.path.exists(latest):
print "ERROR: no latest file."
print("ERROR: no latest file.")
with open(latest) as infile:
for line in infile:
outfile.write(line)
@@ -151,7 +151,8 @@ class XMLFileHelper:
compareXMLFile = self.getStartXMLOrigFileName()
compareXMLFile = os.path.join(self.base_dir, compareXMLFile)
print "INFO: This file was picked up as the compareXMLFile: ", compareXMLFile
print("INFO: This file was picked up as the compareXMLFile: ",
compareXMLFile)
with open(compareXML, 'w') as outfile:
outfile.write('<?xml version=\'1.0\' encoding=\'iso-8859-1\'?> \n')
@@ -159,7 +160,7 @@ class XMLFileHelper:
'<!DOCTYPE DDDB SYSTEM "conddb:/DTD/structure.dtd"> \n')
outfile.write('<DDDB> \n')
if not os.path.exists(compareXMLFile):
print "ERROR: no compareXMLFile."
print("ERROR: no compareXMLFile.")
with open(compareXMLFile) as infile:
for line in infile:
outfile.write(line)
@@ -173,7 +174,7 @@ class XMLFileHelper:
tocopyXML = workdir + "CondDB_Rich" + str(self.whichRich) + ".xml"
if not os.path.exists(tocopyXML):
print "ERROR: no tocopyXML file."
print("ERROR: no tocopyXML file.")
with open(tocopyXML, 'r') as infile:
with open(finalXML, 'w') as outfile:
for line in infile:
@@ -188,7 +189,7 @@ class XMLFileHelper:
temp = workdir + "temp.xml"
counter = 0
if not os.path.exists(newXMLfile):
print "ERROR: no newXMLfile."
print("ERROR: no newXMLfile.")
with open(newXMLfile, 'r') as infile:
with open(temp, 'w') as outfile:
for line in infile:
Loading