Versions Compared

Key

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

...

Code Block
pslogin ~ >  xtcsummary.py 

lists all detector and epics information found in Configure and L1Accept (event data) sections, and lists number of events per calibration cycle. Can be helpful when putting together your myana or pyana analysis script. Example output.

...

  • Front end enclosure Gas detector
    Code Block
     int getFeeGasDet  (double* shotEnergy);
     
    Gives you the shot energy to the array shotEnergy4.
  • Electron beam monitor
    Code Block
     int getEBeam(double& charge, double& energy, double& posx, double& posy,
                  double& angx, double& angy);
     int getEBeam(double& charge, double& energy, double& posx, double& posy,
                  double& angx, double& angy, double& pkcurr);
      
    Gives electron beam values for each of these doubles. The measured charge of the beam (in nC),
    the measured energy of the beam (in MeV), the 2D position of the beam (in mm) away from the origin
    (nominal beam position), and 2D angular position (in mrad) off the assumed direction. and the
    pkcurr = current? in (Amps)

...