Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:08

0001 # ApeSettingAlgorithm
0002 # -------------------
0003 
0004 import FWCore.ParameterSet.Config as cms
0005 
0006 ApeSettingAlgorithm = cms.PSet(
0007     algoName = cms.string('ApeSettingAlgorithm'),
0008     saveApeToASCII = cms.untracked.bool(False),
0009     saveComposites = cms.untracked.bool(False),
0010     saveLocalNotGlobal = cms.untracked.bool(False),
0011     apeASCIISaveFile = cms.untracked.string('ApeDump.txt'),
0012     readApeFromASCII = cms.bool(False),
0013     readLocalNotGlobal = cms.bool(False),
0014     readFullLocalMatrix = cms.bool(False),
0015     setComposites = cms.bool(False),
0016     apeASCIIReadFile = cms.FileInPath('Alignment/CommonAlignmentAlgorithm/test/apeinput.txt')
0017 )
0018 
0019 # Parameters:
0020 #    saveApeToASCII -- Do we write out an APE text file?
0021 #    saveComposites -- Do we write APEs for composite detectors?
0022 #    saveLocalNotGlobal -- Do we write the APEs in the local or global coordinates?
0023 #    apeASCIISaveFile -- The name of the save-file.
0024 #    readApeFromASCII -- Do we read in APEs from a text file?
0025 #    readLocalNotGlobal -- Do we read APEs in the local or the global frame?
0026 #    readFullLocalMatrix -- Do we read the full local matrix or just the diagonal elements?
0027 # Full matrix format: DetID dxx dxy dyy dxz dyz dzz
0028 # Diagonal element format: DetID sqrt(dxx) sqrt(dyy) sqrt(dzz)
0029 #    setComposites -- Do we set the APEs for composite detectors or just ignore them?
0030 #    apeASCIIReadFile -- Input file name.
0031 # Also note:
0032 #    process.AlignmentProducer.saveApeToDB -- to save as an sqlite file
0033 # and associated entries in _cfg.py