Skip to content
Snippets Groups Projects
  1. Oct 11, 2016
  2. Oct 10, 2016
    • Philip Adsley's avatar
      Fix filepath for NMR fileread · 826d8930
      Philip Adsley authored
      I found that the filepath for the NMR Splitpole files wasn't being reproduced correctly. It was used to load the Rmn directory to read the files in but then (at least for me), it looked in the current directory to try to find the Rmn files.
      
      I have (in a fairly ugly manner) fixed this problem by introducing a new TString (FileToRead) which is used to construct the whole path to the Rmn files.
      826d8930
    • Philip Adsley's avatar
      Fix logic error in W1 strip matching · 733768bf
      Philip Adsley authored
      The condition was:
      
       if (m_PreTreatedData->GetFrontTStripNbr(couple[i].X()) == m_PreTreatedData->GetFrontTStripNbr(t) ||
                      m_PreTreatedData->GetFrontTDetectorNbr(couple[i].X()) == m_PreTreatedData->GetFrontTDetectorNbr(t))
      
      i.e., if the strip number is the same or the detector number is the same.
      
      This has been modified to:
      
       if (m_PreTreatedData->GetFrontTStripNbr(couple[i].X()) == m_PreTreatedData->GetFrontTStripNbr(t) &&
                      m_PreTreatedData->GetFrontTDetectorNbr(couple[i].X()) == m_PreTreatedData->GetFrontTDetectorNbr(t))
      
      i.e. the strip number and detector number should both be the same.
      733768bf
  3. Sep 30, 2016
  4. Jul 28, 2016
  5. Jul 26, 2016
  6. Jul 25, 2016
  7. Jul 23, 2016
  8. Jul 22, 2016
  9. Jul 19, 2016
  10. Jul 15, 2016
  11. Jul 14, 2016
  12. Jun 30, 2016
  13. Jun 24, 2016
  14. Jun 13, 2016
  15. Jun 08, 2016
  16. Apr 11, 2016
  17. Apr 03, 2016
  18. Mar 17, 2016
  19. Feb 22, 2016
  20. Feb 18, 2016
  21. Feb 15, 2016
  22. Jan 29, 2016
  23. Jan 27, 2016
Loading