Skip to content

collective

Collective #

Bases: PhysicsObject

A collective physics object

Source code in hml/physics_objects/collective.py
class Collective(PhysicsObject):
    """A collective physics object"""

    def __init__(
        self,
        branch: str,
        start: int | None = None,
        stop: int | None = None,
    ) -> None:
        self._branch = branch
        self._start = start
        self._stop = stop

    @classmethod
    def from_name(cls, name: str) -> Collective:
        if re.match(r"^[a-zA-Z]+$|^[a-zA-Z]+\d*:\d*$", name.strip()):
            match_ = re.match(r"^([a-zA-Z]+)(\d*):?(\d*)$", name)
            branch, start, stop = match_.groups()
            start = int(start) if start != "" else None
            stop = int(stop) if stop != "" else None

            return cls(branch, start, stop)

        raise ValueError(f"Invalid name '{name}' for a collective physics object")

    @property
    def start(self) -> int | None:
        return self._start

    @property
    def stop(self) -> int | None:
        return self._stop

    @property
    def branch(self) -> str:
        return self._branch

    @property
    def slices(self) -> list[slice]:
        return [slice(self.start, self.stop)]

    @property
    def name(self) -> str:
        if self.start is None and self.stop is None:
            return f"{self.branch}"

        elif self.start is None:
            return f"{self.branch}:{self.stop}"

        elif self.stop is None:
            return f"{self.branch}{self.start}:"

        else:
            return f"{self.branch}{self.start}:{self.stop}"

    @property
    def config(self) -> dict:
        return {"branch": self.branch, "start": self.start, "stop": self.stop}

is_collective #

is_collective(object_)

Check if an object is a collective physics object

Source code in hml/physics_objects/collective.py
def is_collective(object_: PhysicsObject | str) -> bool:
    """Check if an object is a collective physics object"""
    if isinstance(object_, PhysicsObject):
        return isinstance(object_, Collective)

    return bool(re.match(r"^[a-zA-Z]+$|^[a-zA-Z]+\d*:\d*$", object_))