Logo ROOT   6.14/05
Reference Guide
parallel_world.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_geom
3 /// Misaligning geometry generate in many cases overlaps, due to the idealization
4 /// of the design and the fact that in real life movements of the geometry volumes
5 /// have constraints and are correlated.
6 ///
7 /// This typically generates inconsistent
8 /// response of the navigation methods, leading to inefficiencies during tracking,
9 /// errors in the material budget calculations, and so on. Among those, there are
10 /// dangerous cases when the hidden volumes are sensitive.
11 /// This macro demonstrates how to use the "parallel world" feature to assign
12 /// highest navigation priority to some physical paths in geometry.
13 ///
14 /// \macro_image
15 /// \macro_code
16 ///
17 /// \author Andrei Gheata
18 
19 void align();
20 
21 //______________________________________________________________________________
22 void parallel_world(Bool_t usepw=kTRUE, Bool_t useovlp=kTRUE)
23 {
24  TGeoManager *geom = new TGeoManager("parallel_world", "Showcase for prioritized physical paths");
25  TGeoMaterial *matV = new TGeoMaterial("Vac", 0,0,0);
26  TGeoMedium *medV = new TGeoMedium("MEDVAC",1,matV);
27  TGeoMaterial *matAl = new TGeoMaterial("Al", 26.98,13,2.7);
28  TGeoMedium *medAl = new TGeoMedium("MEDAL",2,matAl);
29  TGeoMaterial *matSi = new TGeoMaterial("Si", 28.085,14,2.329);
30  TGeoMedium *medSi = new TGeoMedium("MEDSI",3,matSi);
31  TGeoVolume *top = gGeoManager->MakeBox("TOP",medV,100,400,1000);
33 
34  // Shape for the support block
35  TGeoBBox *sblock = new TGeoBBox("sblock", 20,10,2);
36  // The volume for the support
37  TGeoVolume *support = new TGeoVolume("block",sblock, medAl);
38  support->SetLineColor(kGreen);
39 
40  // Shape for the sensor to be prioritized in case of overlap
41  TGeoBBox *ssensor = new TGeoBBox("sensor", 19,9,0.2);
42  // The volume for the sensor
43  TGeoVolume *sensor = new TGeoVolume("sensor",ssensor, medSi);
44  sensor->SetLineColor(kRed);
45 
46  // Chip assembly of support+sensor
47  TGeoVolumeAssembly *chip = new TGeoVolumeAssembly("chip");
48  chip->AddNode(support, 1);
49  chip->AddNode(sensor,1, new TGeoTranslation(0,0,-2.1));
50 
51  // A ladder that normally sags
52  TGeoBBox *sladder = new TGeoBBox("sladder", 20,300,5);
53  // The volume for the ladder
54  TGeoVolume *ladder = new TGeoVolume("ladder",sladder, medAl);
55  ladder->SetLineColor(kBlue);
56 
57  // Add nodes
58  top->AddNode(ladder,1);
59  for (Int_t i=0; i<10; i++)
60  top->AddNode(chip, i+1, new TGeoTranslation(0, -225.+50.*i, 10));
61 
63  TGeoParallelWorld *pw = 0;
64  if (usepw) pw = gGeoManager->CreateParallelWorld("priority_sensors");
65 // Align chips
66  align();
67  if (usepw) {
68  if (useovlp) pw->AddOverlap(ladder);
69  pw->CloseGeometry();
71  }
72  TString cname;
73  cname = usepw ? "cpw" : "cnopw";
74  TCanvas *c = (TCanvas*)gROOT->GetListOfCanvases()->FindObject(cname);
75  if (c) c->cd();
76  else c = new TCanvas(cname, "",800,600);
77  top->Draw();
78 // top->RandomRays(0,0,0,0,sensor->GetName());
79  // Track random "particles" coming from the block side and draw only the tracklets
80  // actually crossing one of the sensors. Note that some of the tracks coming
81  // from the outer side may see the full sensor, while the others only part of it.
82  TStopwatch timer;
83  timer.Start();
84  top->RandomRays(100000,0,0,-30,sensor->GetName());
85  timer.Stop();
86  timer.Print();
87  TView3D *view = (TView3D*)gPad->GetView();
88  view->SetParallel();
89  view->Side();
90  if (usepw) pw->PrintDetectedOverlaps();
91 }
92 
93 //______________________________________________________________________________
94 void align()
95 {
96 // Aligning 2 sensors so they will overlap with the support. One sensor is positioned
97 // normally while the other using the shared matrix
98  TGeoPhysicalNode *node;
100  Double_t sag;
101  for (Int_t i=0; i<10; i++) {
102  node = gGeoManager->MakePhysicalNode(TString::Format("/TOP_1/chip_%d",i+1));
103  sag = 8.-0.494*(i-4.5)*(i-4.5);
104  TGeoTranslation *tr = new TGeoTranslation(0., -225.+50.*i, 10-sag);
105  node->Align(tr);
106  if (pw) pw->AddNode(TString::Format("/TOP_1/chip_%d",i+1));
107  }
108 }
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:47
TGeoPhysicalNode * MakePhysicalNode(const char *path=0)
Makes a physical node corresponding to a path.
The manager class for any TGeo geometry.
Definition: TGeoManager.h:38
Box class.
Definition: TGeoBBox.h:17
void Start(Bool_t reset=kTRUE)
Start the stopwatch.
Definition: TStopwatch.cxx:58
Volume assemblies.
Definition: TGeoVolume.h:307
void Print(Option_t *option="") const
Print the real and cpu time passed between the start and stop events.
Definition: TStopwatch.cxx:219
Definition: Rtypes.h:59
void AddNode(const char *path)
Add a node normally to this world. Overlapping nodes not allowed.
TGeoVolume, TGeoVolumeMulti, TGeoVolumeAssembly are the volume classes.
Definition: TGeoVolume.h:48
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
Definition: TCanvas.cxx:688
virtual void Draw(Option_t *option="")
draw top volume according to option
Class describing translations.
Definition: TGeoMatrix.h:121
#define gROOT
Definition: TROOT.h:410
void SetTopVolume(TGeoVolume *vol)
Set the top volume and corresponding node as starting point of the geometry.
Basic string class.
Definition: TString.h:131
Base class describing materials.
Definition: TGeoMaterial.h:29
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
Definition: Rtypes.h:59
Int_t PrintDetectedOverlaps() const
Print the overlaps which were detected during real tracking.
virtual void SetParallel()
Set the parallel option (default).
Definition: TView3D.cxx:1303
void Stop()
Stop the stopwatch.
Definition: TStopwatch.cxx:77
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString...
Definition: TString.cxx:2286
TGeoVolume * MakeBox(const char *name, TGeoMedium *medium, Double_t dx, Double_t dy, Double_t dz)
Make in one step a volume pointing to a box shape with given medium.
void AddOverlap(TGeoVolume *vol, Bool_t activate=kTRUE)
To use this optimization, the user should declare the full list of volumes which may overlap with any...
Physical nodes are the actual &#39;touchable&#39; objects in the geometry, representing a path of positioned ...
virtual void AddNode(TGeoVolume *vol, Int_t copy_no, TGeoMatrix *mat=0, Option_t *option="")
Add a TGeoNode to the list of nodes.
Definition: TGeoVolume.cxx:984
The 3D view class.
Definition: TView3D.h:29
void RandomRays(Int_t nrays=10000, Double_t startx=0, Double_t starty=0, Double_t startz=0, const char *target_vol=0, Bool_t check_norm=kFALSE)
Random raytracing method.
void CloseGeometry(Option_t *option="d")
Closing geometry implies checking the geometry validity, fixing shapes with negative parameters (run-...
virtual void Side()
Definition: TView3D.cxx:1932
void SetUseParallelWorldNav(Bool_t flag)
Activate/deactivate usage of parallel world navigation.
virtual void AddNode(TGeoVolume *vol, Int_t copy_no, TGeoMatrix *mat=0, Option_t *option="")
Add a component to the assembly.
TGeoParallelWorld * GetParallelWorld() const
Definition: TGeoManager.h:555
The Canvas class.
Definition: TCanvas.h:31
R__EXTERN TGeoManager * gGeoManager
Definition: TGeoManager.h:562
double Double_t
Definition: RtypesCore.h:55
Bool_t CloseGeometry()
The main geometry must be closed.
Media are used to store properties related to tracking and which are useful only when using geometry ...
Definition: TGeoMedium.h:23
virtual void SetLineColor(Color_t lcolor)
Set the line color.
Bool_t Align(TGeoMatrix *newmat=0, TGeoShape *newshape=0, Bool_t check=kFALSE, Double_t ovlp=0.001)
Align a physical node with a new relative matrix/shape.
#define gPad
Definition: TVirtualPad.h:285
#define c(i)
Definition: RSha256.hxx:101
Definition: Rtypes.h:59
TGeoParallelWorld * CreateParallelWorld(const char *name)
Create a parallel world for prioritised navigation.
Base class for a flat parallel geometry.
const Bool_t kTRUE
Definition: RtypesCore.h:87
Stopwatch class.
Definition: TStopwatch.h:28