1 / 6

C++ / G4MICE Course

C++ / G4MICE Course. MICE Data Make Another Application Measure Pions and Protons in the MICE Beam!. Session 9. MICE Data. Un tar the file mice_data.tgz: tar xvzf mice_data.tgz It contains 6 files: 157, 158, 159, 160, 162 & 163

cruz
Download Presentation

C++ / G4MICE Course

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. C++ / G4MICE Course MICE Data Make Another Application Measure Pions and Protons in the MICE Beam! Session 9

  2. MICE Data • Un tar the file mice_data.tgz: • tar xvzf mice_data.tgz • It contains 6 files: • 157, 158, 159, 160, 162 & 163 • These are six runs recorded with the MICE DAQ in which GVA1 and GVA2 were read out. • I have also provided a sample app.in file and Gva2Gva1App.cc file.

  3. GVA1/2 Counters • GVA1 and GVA2 were readout by one channel each in a TDC. • You can find out which from the log book: • https://micelog.dl.ac.uk/MICE+Log/97

  4. Gva2Gva1App.cc • Read through the code and understand what it is doing so far. • At the moment it finds a TDC hit on one channel and fills a histogram with the TDC value. • You need to modify this to find the TDC hits on GVA1 and GVA2 and histogram the individual TDC distributions AND the distribution of the TDC values on GVA2-GVA1 (bin this last one from 0-100).

  5. Compile and Run • Run AppMake on the provided app.in file. • ./Gva2Gva1App 157 158 159 160 162 163 >& log • It is a good idea to redirect the output into the log file as shown above as there is a lot of debug output from the DATE unpacking code at the moment.

  6. Pions and Protons • This task is complete when you can show a histogram of the difference between the TDC counts in GVA2 and GVA1 which shows a proton and pion peak. • For extra credit – fit the distribution with two gaussians, either in your application or using ROOT interactively.

More Related