You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Entry$ : return the current entry number (== TTree::GetReadEntry())
2146
-
LocalEntry$ : return the current entry number in the current tree of a chain (== GetTree()->GetReadEntry())
2147
-
Entries$ : return the total number of entries (== TTree::GetEntries())
2148
-
LocalEntries$ : return the total number of entries in the current tree of a chain (== GetTree()->TTree::GetEntries())
2149
-
Length$ : return the total number of element of this formula for this entry (==TTreeFormula::GetNdata())
2150
-
Iteration$ : return the current iteration over this formula for this entry (i.e. varies from 0 to Length$).
2151
-
Length$(formula ) : return the total number of element of the formula given as a parameter.
2152
-
Sum$(formula ) : return the sum of the value of the elements of the formula given as a parameter. For example the mean for all the elements
2153
-
in one entry can be calculated with: Sum$(formula )/Length$(formula )
2154
-
Min$(formula ) : return the minimum (within one TTree entry) of the value of the elements of the formula given as a parameter.
2155
-
Max$(formula ) : return the maximum (within one TTree entry) of the value of the elements of the formula given as a parameter.
2156
-
MinIf$(formula,condition)
2157
-
MaxIf$(formula,condition) : return the minimum (maximum) (within one TTree entry) of the value of the elements of the formula
2158
-
given as a parameter if they match the condition. If no element matches the condition, the result is zero. To avoid the resulting peak at zero, use the pattern:
2159
-
2160
-
~~~
2161
-
</td>
2162
-
<td>
2163
-
~~~{cpp}
2164
-
Entry$ : Use rdfentry_ column
2165
-
LocalEntry$ :
2166
-
Entries$ : Use Count at the beginning
2167
-
LocalEntries$ :
2168
-
Length$ :
2169
-
Iteration$ :
2170
-
Length$(formula) : Use Count on the Defined or Filtered dataset
2171
-
Sum$(formula) : Use Sum on the Defined or Filtered dataset
0 commit comments