Add c'tors to Compound class

https://bornagainproject.org/git-main/ref/sample/particle/composition/compound/ describes

# creates an empty particle composition
composition = Compound()

# creates a composition made of a single particle at a given position
composition = Compound(particle, position = R3(0,0,0))

# creates a composition and includes copies of a particle at specified positions
Compound(particle, positions = [pos1, pos2, ...])

But currently there is only Compound() constructor.

Should we add the others?