1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
20 /// \brief Tracker visualization program
22 /// \author Laurent Aphecetche, Subatech
25 #include "AliMUONMchViewApplication.h"
27 #include "AliCDBManager.h"
28 #include "AliCodeTimer.h"
30 #include "AliMUONPainterHelper.h"
31 #include <Riostream.h>
32 #include <TObjArray.h>
33 #include <TObjString.h>
37 //______________________________________________________________________________
40 /// Printout available options of the program
41 cout << "mchview " << endl;
42 cout << " --version : shows the current version of the program" << endl;
43 cout << " --use filename.root : reuse a previously saved (from this program) root file. Several --use can be used ;-)" << endl;
44 cout << " --geometry #x#+#+# : manually specify the geometry of the window, ala X11..., e.g. --geometry 1280x900+1600+0 will" << endl;
45 cout << " get a window of size 1280x900, located at (1600,0) from the top-left of the (multihead) display " << endl;
49 //______________________________________________________________________________
50 int main(int argc, char** argv)
52 /// Main function for the program
55 for ( int i = 1; i < argc; ++i )
57 args.Add(new TObjString(argv[i]));
62 TObjArray filesToOpen;
63 Bool_t isGeometryFixed(kFALSE);
67 for ( Int_t i = 0; i <= args.GetLast(); ++i )
69 TString a(static_cast<TObjString*>(args.At(i))->String());
70 if ( a == "--version" )
72 cout << "mchview Version " << AliMUONMchViewApplication::Version() << " ($Id$)" << endl;
76 if ( a == "--use" && i < args.GetLast() )
78 filesToOpen.Add(args.At(i+1));
82 else if ( a == "--geometry" )
84 isGeometryFixed = kTRUE;
85 TString g(static_cast<TObjString*>(args.At(i+1))->String());
86 sscanf(g.Data(),"%dx%d+%d+%d",&gix,&giy,&gox,&goy);
97 if ( nok < args.GetLast() )
102 AliWarningGeneral("main","FIXME ? Remove default storage and run number from here...");
104 AliCDBManager::Instance()->SetDefaultStorage("local://$ALICE_ROOT");
105 AliCDBManager::Instance()->SetRun(0);
107 gROOT->SetStyle("Plain");
108 gStyle->SetPalette(1);
109 Int_t n = gStyle->GetNumberOfColors();
110 Int_t* colors = new Int_t[n+2];
111 for ( Int_t i = 1; i <= n; ++i )
113 colors[i] = gStyle->GetColorPalette(i-1);
117 gStyle->SetPalette(n+2,colors);
125 if ( isGeometryFixed )
133 AliMUONMchViewApplication* theApp = new AliMUONMchViewApplication("mchview", &argc, argv, w,h,gox,goy);
135 AliCodeTimer::Instance()->Print();
137 TIter next(&filesToOpen);
139 while ( ( s = static_cast<TObjString*>(next()) ) )
141 theApp->Open(s->String().Data());
144 // --- Start the event loop ---
147 AliMUONPainterHelper::Instance()->Save();