]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/its_raw.C
Added protection (P. Hristov)
[u/mrichter/AliRoot.git] / EVE / alice-macros / its_raw.C
index 75c8f54eb1b1cc54a7194c329fa3adbfbcb80e58..75dc1cca06e5b77c2a2b4ed2d535c08b1eccdfa6 100644 (file)
@@ -7,6 +7,8 @@
  * full copyright notice.                                                 *
  **************************************************************************/
 
+#include <vector> // bypass a cint problem in root-5.20
+
 // Load ITS raw-data.
 // Argument mode is a bitwise or determining which layers to import:
 //    1,  2 : SPD
@@ -14,7 +16,9 @@
 //   16, 32 : SSD
 // By default import all layers.
 
-void its_raw(Int_t mode = 63)
+void its_raw(Int_t mode            = 63,
+             Bool_t check_empty    = kTRUE,
+             Bool_t scaled_modules = kFALSE)
 {
   AliRawReader *rawReader = AliEveEventManager::AssertRawReader();
 
@@ -26,5 +30,5 @@ void its_raw(Int_t mode = 63)
 
   gStyle->SetPalette(1, 0);
 
-  its_display_raw_digits(di, mode);
+  its_display_raw_digits(di, mode, check_empty, scaled_modules);
 }