Go to file
Markus Rosenstihl 7da97a4f26 Add option to suppress ringing in Saturation Recovery script
A parameter option "suppress_ringing" has been added to the Saturation Recovery script. This option modifies phase lists and allows the application of a phase cycle that compensates for ringing but reduces signal-to-noise ratio by half. This gives users the option to prioritize either reduced ringing or higher SNR as per their requirements.
2024-02-27 17:14:28 +01:00
AU_Programs 2015-09-30 12:26:01 +00:00
Scripts Add option to suppress ringing in Saturation Recovery script 2024-02-27 17:14:28 +01:00
README.md change git path in the README 2023-01-30 22:59:27 +01:00
The DAMARIS Script Library.doc added documentation source 2015-09-30 11:29:54 +00:00
The DAMARIS Script Library.pdf added documentation source 2015-09-30 11:29:54 +00:00

DAMARIS Script Library

This is a collection of the pules programs used in the work group of Prof. Michael Vogel at the Technical University of Darmstadt. This collection was done by Oleg Petrov in order to have a common base on all of our spectrometers. You can get a clone of this repository via:

git clone https://gitea.pkm.physik.tu-darmstadt.de/IPKM/damaris-script-library.git

Details of the pulse programs can be found in the document: "The DAMARIS Script Library.pdf".

For people working with this and thy want to revert the local changes:

(This is from from StackOverflow) If you want to revert changes made to your working copy, do this:

git checkout .

If you want to revert changes made to the index (i.e., that you have added), do this. Warning this will reset all of your unpushed commits to master!:

git reset

If you want to revert a change that you have committed, do this:

git revert <commit 1> <commit 2>

If you want to remove untracked files (e.g., new files, generated files):

git clean -f

Or untracked directories (e.g., new or automatically generated directories):

git clean -fd

Current maintainer of this library is @markusro.