photons.plugins.tia_gain module
Plugin to determine the gain of a transimpedance amplifier.
Setup
A Keithley 6430 sub-femto SourceMeter produces a current.
The current (from the IN/OUT HIGH port of the pre-amp) is the input signal to transimpedance amplifier.
The output of the transimpedance amplifier is connected to a digital multimeter.
- class photons.plugins.tia_gain.TIAGain(parent, **kwargs)[source]
Bases:
BasePluginPlugin to determine the gain of a transimpedance amplifier.
- Parameters:
parent (
MainWindow) – The main window.**kwargs – All keyword arguments are passed to super().
- class photons.plugins.tia_gain.TIAGainWorker(parent)[source]
Bases:
WorkerProcess an expensive or blocking operation in a thread that is separate from the main thread.
You can access to the attributes of the
Workeras though they are attributes of theThread.The
*argsand**kwargsparameters are passed to the constructor of theWorkerwhen thestart()method is called.Example
See
SleepWorkerfor an example of aWorker.