Skip to content
Snippets Groups Projects
  1. Aug 05, 2014
  2. May 06, 2006
  3. Mar 11, 2005
    • Rene Brun's avatar
      From Philippe: · 32b8056e
      Rene Brun authored
      This patch implements support for the accessing the collection object in
      TTreeFormula:
      
      //     Accessing collection objects
      //     ============================
      //
      //  TTree::Draw default's handling of collections is to assume that any
      //  request on a collection pertain to it content.  For example, if fTracks
      //  is a collection of Track objects, the following:
      //      tree->Draw("event.fTracks.fPx");
      //  will plot the value of fPx for each Track objects inside the collection.
      //  Also
      //     tree->Draw("event.fTracks.size()");
      //  would plot the result of the member function Track::size() for each
      //  Track object inside the collection.
      //  To access information about the collection itself, TTree::Draw support
      //  the '@' notation.  If a variable which points to a collection is
      prefixed
      //  or postfixed with '@', the next part of the expression will pertain to
      //  the collection object.  For example:
      //     tree->Draw("event.@fTracks.size()");
      //  will plot the size of the collection refered to by fTracks (i.e the
      number
      //  of Track objects).
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@11309 27541ba8-7e3a-0410-8455-c3a389f83636
      32b8056e
  4. Feb 18, 2005
  5. Jan 30, 2003
    • Rene Brun's avatar
      From Philippe: · 275f3f2c
      Rene Brun authored
      This patch adds systematic test for the ability of TTree::Draw to draw TBits objects.
      It also fixes all the bug discovered during the tests.
      It also adds a test for split level 2.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@6011 27541ba8-7e3a-0410-8455-c3a389f83636
      275f3f2c
  6. Nov 28, 2002
  7. Aug 05, 2002
  8. Aug 01, 2002
  9. Dec 04, 2001
    • Rene Brun's avatar
      This update from Philippe rationalizes the treatment of array of chars and bytes. · ce83a050
      Rene Brun authored
      They are now considered by default as an array of numbers.  However if
      they are used with an operator== or an operator!= and if the second argument
      is also a string, the strcmp function will be used.  In addition, a direct call
      of the function strstr is allowed.   The checks and error messages have been
      improved for both the operator and strstr.
      This update also corrects the problem where an expression was drawn multiple
      times when using a fixed length array in string comparaison.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@3390 27541ba8-7e3a-0410-8455-c3a389f83636
      ce83a050
  10. Oct 02, 2001
  11. Jul 11, 2001
  12. Jul 10, 2001
  13. Jul 06, 2001
Loading