Draw arrows. 
   
  
{
 
   auto par = 
new TPaveLabel(0.1, 0.8, 0.9, 0.95, 
"Examples of various arrows formats");
 
   par->SetFillColor(42);
   par->Draw();
 
   auto ar2 = 
new TArrow(0.2, 0.1, 0.2, 0.7, 0.05, 
"|>");
 
   auto ar3 = 
new TArrow(0.3, 0.1, 0.3, 0.7, 0.05, 
"<|>");
 
   auto ar4 = 
new TArrow(0.46, 0.7, 0.82, 0.42, 0.07, 
"|>");
 
   auto ar5 = 
new TArrow(0.4, 0.25, 0.95, 0.25, 0.15, 
"<|>");
 
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
 
Draw all kinds of Arrows.
 
A Pave (see TPave) with a text centered in the Pave.
 
- Author
 - Rene Brun 
 
Definition in file arrows.C.