/// \file /// \ingroup tutorial_eve /// Demonstrates usage pre-scaling for automatic 2D projections. /// /// \image html eve_projection_prescale.png /// \macro_code /// /// \author Matevz Tadel const char* esd_geom_file_name = "http://root.cern.ch/files/alice_ESDgeometry.root"; void projection_prescale() { TFile::SetCacheFileDir("."); TEveManager::Create(); auto pev = gEve->SpawnNewViewer("Projections"); // camera auto s = gEve->SpawnNewScene("Projected Geom"); pev->AddScene(s); auto pgv = pev->GetGLViewer(); pgv->SetCurrentCamera(TGLViewer::kCameraOrthoXOY); TGLOrthoCamera& cam = (TGLOrthoCamera&) pgv->CurrentCamera(); cam.SetZoomMinMax(0.2, 20); // projections auto mng = new TEveProjectionManager(); { mng->SetProjection(TEveProjection::kPT_RPhi); auto p = mng->GetProjection(); p->AddPreScaleEntry(0, 0, 4); // r scale 4 from 0 p->AddPreScaleEntry(0, 45, 1); // r scale 1 from 45 p->AddPreScaleEntry(0, 310, 0.5); p->SetUsePreScale(kTRUE); } { mng->SetProjection(TEveProjection::kPT_RhoZ); auto p = mng->GetProjection(); // Increase silicon tracker p->AddPreScaleEntry(0, 0, 4); // rho scale 4 from 0 p->AddPreScaleEntry(1, 0, 4); // z scale 4 from 0 // Normal for TPC p->AddPreScaleEntry(0, 45, 1); // rho scale 1 from 45 p->AddPreScaleEntry(1, 110, 1); // z scale 1 from 110 // Reduce the rest p->AddPreScaleEntry(0, 310, 0.5); p->AddPreScaleEntry(1, 250, 0.5); p->SetUsePreScale(kTRUE); } mng->SetProjection(TEveProjection::kPT_RPhi); s->AddElement(mng); auto axes = new TEveProjectionAxes(mng); s->AddElement(axes); gEve->AddToListTree(axes, kTRUE); gEve->AddToListTree(mng, kTRUE); // Simple geometry auto geom = TFile::Open(esd_geom_file_name, "CACHEREAD"); if (!geom) return; auto gse = (TEveGeoShapeExtract*) geom->Get("Gentle"); auto gsre = TEveGeoShape::ImportShapeExtract(gse, 0); geom->Close(); delete geom; gEve->AddGlobalElement(gsre); mng->ImportElements(gsre); auto line = new TEveLine; line->SetMainColor(kGreen); for (Int_t i=0; i<160; ++i) line->SetNextPoint(120*sin(0.2*i), 120*cos(0.2*i), 80-i); gEve->AddElement(line); mng->ImportElements(line); line->SetRnrSelf(kFALSE); //------------------------------------------------------------------------- // Scaled 3D "projection" //------------------------------------------------------------------------- auto sev = gEve->SpawnNewViewer("Scaled 3D"); auto smng = new TEveProjectionManager(TEveProjection::kPT_3D); auto sp = smng->GetProjection(); sp->SetUsePreScale(kTRUE); sp->AddPreScaleEntry(2, 0, 1); sp->AddPreScaleEntry(2, 100, 0.2); auto ss = gEve->SpawnNewScene("Scaled Geom"); sev->AddScene(ss); ss->AddElement(smng); smng->ImportElements(gsre); //------------------------------------------------------------------------- gEve->GetBrowser()->GetTabRight()->SetTab(1); gEve->Redraw3D(kTRUE); }