VESPERS2DScanConfiguration::VESPERS2DScanConfiguration(QObject *parent) : AMStepScanConfiguration(parent), VESPERSScanConfiguration() { setName("2D Map"); setUserScanName("2D Map"); dbObject_->setParent(this); setIncomingChoice(VESPERS::Imini); setFluorescenceDetector(VESPERS::SingleElement); setMotor(VESPERS::Motors(VESPERS::H | VESPERS::V)); setCCDDetector(VESPERS::NoCCD); setCCDFileName(""); setExportAsAscii(true); setExportSpectraSources(true); setExportSpectraInRows(true); setCloseFastShutter(true); setReturnToOriginalPosition(false); AMScanAxisRegion *region = new AMScanAxisRegion; AMScanAxis *axis = new AMScanAxis(AMScanAxis::StepAxis, region); appendScanAxis(axis); region = new AMScanAxisRegion; axis = new AMScanAxis(AMScanAxis::StepAxis, region); appendScanAxis(axis); connect(scanAxisAt(0)->regionAt(0), SIGNAL(regionStartChanged(AMNumber)), this, SLOT(computeTotalTime())); connect(scanAxisAt(0)->regionAt(0), SIGNAL(regionStepChanged(AMNumber)), this, SLOT(computeTotalTime())); connect(scanAxisAt(0)->regionAt(0), SIGNAL(regionEndChanged(AMNumber)), this, SLOT(computeTotalTime())); connect(scanAxisAt(0)->regionAt(0), SIGNAL(regionTimeChanged(AMNumber)), this, SLOT(computeTotalTime())); connect(scanAxisAt(1)->regionAt(0), SIGNAL(regionStartChanged(AMNumber)), this, SLOT(computeTotalTime())); connect(scanAxisAt(1)->regionAt(0), SIGNAL(regionStepChanged(AMNumber)), this, SLOT(computeTotalTime())); connect(scanAxisAt(1)->regionAt(0), SIGNAL(regionEndChanged(AMNumber)), this, SLOT(computeTotalTime())); connect(dbObject_, SIGNAL(ccdDetectorChanged(int)), this, SLOT(computeTotalTime())); }
VESPERSEXAFSScanConfiguration::VESPERSEXAFSScanConfiguration(QObject *parent) : AMEXAFSScanConfiguration(parent), VESPERSScanConfiguration() { regions_->setSensibleRange(-30, 40); exafsRegions()->setDefaultEdgeEnergy(0); // Everything for XAS related scans on VESPERS is done using relative energy to the edge on a PV level. exafsRegions()->setEnergyControl(VESPERSBeamline::vespers()->energyRelative()); exafsRegions()->setTimeControl(VESPERSBeamline::vespers()->masterDwellTime()); exafsRegions()->setKControl(VESPERSBeamline::vespers()->kControl()); exafsRegions()->setDefaultIsRelative(true); regions_->setDefaultUnits(" eV"); regions_->setDefaultTimeUnits(" s"); setName("XAS Scan"); setUserScanName("XAS Scan"); dbObject_->setParent(this); setFluorescenceDetector(VESPERS::NoXRF); setTransmissionChoice(VESPERS::Ipost); setIncomingChoice(VESPERS::Imini); edge_ = ""; energy_ = 0.0; useFixedTime_ = false; numberOfScans_ = 1; goToPosition_ = false; position_ = qMakePair(0.0, 0.0); setExportSpectraSources(true); connect(regions_, SIGNAL(regionsChanged()), this, SLOT(computeTotalTime())); connect(regions_, SIGNAL(regionsChanged()), this, SLOT(onEXAFSRegionsChanged())); connect(VESPERSBeamline::vespers()->variableIntegrationTime(), SIGNAL(a0Changed(double)), this, SLOT(computeTotalTime())); connect(VESPERSBeamline::vespers()->variableIntegrationTime(), SIGNAL(a1Changed(double)), this, SLOT(computeTotalTime())); connect(VESPERSBeamline::vespers()->variableIntegrationTime(), SIGNAL(a2Changed(double)), this, SLOT(computeTotalTime())); }
VESPERSSpatialLineScanConfiguration::VESPERSSpatialLineScanConfiguration(QObject *parent) : AMStepScanConfiguration(parent), VESPERSScanConfiguration() { setName("Line Scan"); setUserScanName("Line Scan"); dbObject_->setParent(this); setIncomingChoice(VESPERS::Imini); setFluorescenceDetector(VESPERS::SingleElement); setMotor(VESPERS::H); setCCDDetector(VESPERS::NoCCD); setCCDFileName(""); setExportSpectraSources(true); setExportSpectraInRows(true); setOtherPosition(-123456789.0); setCloseFastShutter(true); setReturnToOriginalPosition(false); AMScanAxisRegion *region = new AMScanAxisRegion; AMScanAxis *axis = new AMScanAxis(AMScanAxis::StepAxis, region); appendScanAxis(axis); connect(this, SIGNAL(startChanged(double)), this, SLOT(computeTotalTime())); connect(this, SIGNAL(stepChanged(double)), this, SLOT(computeTotalTime())); connect(this, SIGNAL(endChanged(double)), this, SLOT(computeTotalTime())); connect(this, SIGNAL(timeChanged(double)), this, SLOT(computeTotalTime())); connect(dbObject_, SIGNAL(ccdDetectorChanged(int)), this, SLOT(computeTotalTime())); }
VESPERSTimeScanConfiguration::VESPERSTimeScanConfiguration(QObject *parent) : AMTimedRegionScanConfiguration(parent), VESPERSScanConfiguration() { setName("Timed Scan"); setUserScanName("Timed Scan"); dbObject_->setParent(this); setIncomingChoice(VESPERS::Imini); setFluorescenceDetector(VESPERS::SingleElement); setCCDDetector(VESPERS::NoCCD); setCCDFileName(""); setExportSpectraSources(true); setExportSpectraInRows(true); setTime(1); setTimePerAcquisition(10); setIterations(1); computeTotalTime(); connect(this, SIGNAL(timeChanged(double)), this, SLOT(computeTotalTime())); connect(this, SIGNAL(timePerAcquisitionChanged(double)), this, SLOT(computeTotalTime())); connect(this, SIGNAL(iterationsChanged(int)), this, SLOT(computeTotalTime())); connect(dbObject_, SIGNAL(ccdDetectorChanged(int)), this, SLOT(computeTotalTime())); }