diff --git a/src/qibolab/pulses/envelope.py b/src/qibolab/pulses/envelope.py index 85a087fcf..cda3581be 100644 --- a/src/qibolab/pulses/envelope.py +++ b/src/qibolab/pulses/envelope.py @@ -1,4 +1,4 @@ -"""Library of pulse shapes.""" +"""Library of pulse envelopes.""" from abc import ABC from typing import Annotated, Literal, Union @@ -131,7 +131,7 @@ def i(self, samples: int) -> Waveform: class GaussianSquare(BaseEnvelope): - r"""GaussianSquare pulse shape. + r"""Rectangular envelope with Gaussian rise and fall. .. math:: @@ -161,7 +161,7 @@ def i(self, samples: int) -> Waveform: class Drag(BaseEnvelope): - """Derivative Removal by Adiabatic Gate (DRAG) pulse shape. + """Derivative Removal by Adiabatic Gate (DRAG) pulse envelope. .. todo:: @@ -267,7 +267,7 @@ def i(self, samples: int) -> Waveform: class ECap(BaseEnvelope): - r"""ECap pulse shape. + r"""ECap pulse envelope. .. todo:: @@ -296,7 +296,7 @@ def i(self, samples: int) -> Waveform: class Custom(BaseEnvelope): - """Arbitrary shape. + """Arbitrary envelope. .. todo::