]> git.uio.no Git - u/mrichter/AliRoot.git/blame - AliGeant4/macro/MUON/Config.C
Merging the VirtualMC branch to the main development branch (HEAD)
[u/mrichter/AliRoot.git] / AliGeant4 / macro / MUON / Config.C
CommitLineData
676fb573 1void Config(Int_t version)
2{
b9d0a01d 3 gSystem->Load("libmicrocern");
4 gSystem->Load("libMUON");
676fb573 5
6 AliMUON *MUON = 0;
7 switch (version) {
8 case 0: MUON = new AliMUONv0("MUON","normal MUON"); break;
f65f3af2 9 case 1: MUON = new AliMUONv1("MUON","default"); break;
676fb573 10 }
676fb573 11}