Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ExpRunCorresponding run in xpptut15DetectorTest to implement
xpplv9818127650Jungfrau

ROI, projection, spectrum

Spectrum

Cube: image




Opal
xppx49520 267630Epix100droplet, photon, droplet-to-photon



Zyla
xppx49520 602631Epix100droplet, photon, droplet-to-photon
mfxc00118239660Rayonix

azavAzimuthal integration

Cube: azav

Git

Workflow

  • Make a  branch: git checkout -b branch_name
  • Develop code on the branch
  • Commit at regular interval: git commit -m "a commit message"
  • Keep track of master branch: if another pull request has been merged, you want to include these new changes in your code.
    • git checkout master
    • git pull
    • git checkout branch_name
    • git merge master
    • Resolve conflict if any
  • When a milestone or an important step is reached make a pull request on github

...