File: GeoManager.cpp

package info (click to toggle)
vecgeom 1.2.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 24,016 kB
  • sloc: cpp: 88,803; ansic: 6,888; python: 1,035; sh: 582; sql: 538; makefile: 23
file content (457 lines) | stat: -rw-r--r-- 15,979 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
// This file is part of VecGeom and is distributed under the
// conditions in the file LICENSE.txt in the top directory.
// For the full list of authors see CONTRIBUTORS.txt and `git log`.

/// \file GeoManager.cpp

#include "VecGeom/management/GeoManager.h"
#include "VecGeom/management/NavIndexTable.h"
#include "VecGeom/volumes/PlacedVolume.h"
#include "VecGeom/navigation/NavigationState.h"
#include "VecGeom/management/ABBoxManager.h"
#include "VecGeom/volumes/UnplacedBooleanVolume.h"
#include "VecGeom/volumes/UnplacedScaledShape.h"
#include "VecGeom/volumes/LogicalVolume.h"
#include "VecGeom/management/GeoVisitor.h"

#include <dlfcn.h>
#include <stdio.h>
#include <list>
#include <vector>
#include <set>
#include <functional>

namespace vecgeom {
inline namespace VECGEOM_IMPL_NAMESPACE {

VPlacedVolume *GeoManager::gCompactPlacedVolBuffer = nullptr;
NavIndex_t *GeoManager::gNavIndex                  = nullptr;
Precision GeoManager::gMillimeterUnit              = 0.1; // i.e default unit for length is centimeter

void GeoManager::RegisterLogicalVolume(LogicalVolume *const logical_volume)
{
  if (!fIsClosed)
    fLogicalVolumesMap[logical_volume->id()] = logical_volume;
  else {
    std::cerr << "Logical Volume created after geometry is closed --> will not be registered\n";
  }
}

void GeoManager::RegisterPlacedVolume(VPlacedVolume *const placed_volume)
{
  if (!fIsClosed)
    fPlacedVolumesMap[placed_volume->id()] = placed_volume;
  else {
    // std::cerr << "PlacedVolume " // << placed_volume->GetName()
    //          << " created after geometry is closed --> will not be registered\n";
  }
}

void GeoManager::DeregisterLogicalVolume(const int id)
{
  if (fLogicalVolumesMap.find(id) != fLogicalVolumesMap.end()) {
    if (fIsClosed) {
      std::cerr << "deregistering an object from GeoManager while geometry is closed\n";
    }
    fLogicalVolumesMap.erase(id);
  }
}

void GeoManager::DeregisterPlacedVolume(const int id)
{
  if (fPlacedVolumesMap.find(id) != fPlacedVolumesMap.end()) {
    if (fIsClosed) {
      std::cerr << "deregistering an object from GeoManager while geometry is closed\n";
    }
    fPlacedVolumesMap.erase(id);
  }
}

void GeoManager::CompactifyMemory()
{
  // this function will compactify the memory a-posteriori
  // it might be worth investigating other methods that do this directly
  // ( for instance via specialized allocators )

  // ---------------------------------
  // start with just the placedvolumes

  // do a check on a fundamental hypothesis :
  // all placed volume objects have the same size ( so that we can compactify them in an array )
  for (auto v : fPlacedVolumesMap) {
    if (v.second->MemorySize() != fWorld->MemorySize())
      std::cerr << "Fatal Warning : placed volume instances have non-uniform size \n";
  }

  unsigned int pvolumecount = fPlacedVolumesMap.size();

  //  This piece of code was just to cross check something:

  //  std::vector<VPlacedVolume const *> pvolumes;
  //  getAllPlacedVolumes(pvolumes);
  //  // make it a set ( to get rid of potential duplicates )
  //  std::set<VPlacedVolume const *> pvolumeset(pvolumes.begin(), pvolumes.end());

  //  std::vector<LogicalVolume const *> lvolumes;
  //  GetAllLogicalVolumes(lvolumes);
  //  std::set<LogicalVolume const *> lvolumeset(lvolumes.begin(), lvolumes.end());

  //  std::cerr << pvolumecount << " vs " << pvolumeset.size() << "\n";
  //  std::cerr << fLogicalVolumesMap.size() << " vs " << lvolumeset.size() << "\n";

  // conversion map to repair pointers from old to new
  std::map<VPlacedVolume const *, VPlacedVolume const *> conversionmap;

  // allocate the buffer ( consider alignment issues later )
  // BIG NOTE HERE: we cannot call new VPlacedVolume[pvolumecount] as it is a pure virtual class
  // this also means: our mechanism will only work if none of the derived classes of VPlacedVolumes
  // adds a data member and we have to find a way to check or forbid this
  // ( a runtime check is done above )
  gCompactPlacedVolBuffer = (VPlacedVolume *)malloc(pvolumecount * sizeof(VPlacedVolume));

  //    // the first element in the buffer has to be the world
  //    buffer[0] = *fWorld; // copy assignment of PlacedVolumes
  //    // fix the index to pointer map
  //    fPlacedVolumesMap[fWorld->id()] = &buffer[0];
  //    conversionmap[ fWorld ] = &buffer[0];
  //    // free memory ( we should really be doing this with smart pointers --> check CUDA ! )
  //    // delete fWorld;
  //    // fix the global world pointer
  //    fWorld = &buffer[0];

  // go through rest of volumes
  // TODO: we could take an influence on the order here ( to place certain volumes next to each other )
  for (auto v : fPlacedVolumesMap) {
    unsigned int volumeindex             = v.first;
    gCompactPlacedVolBuffer[volumeindex] = *v.second;
    fPlacedVolumesMap[volumeindex]       = &gCompactPlacedVolBuffer[volumeindex];
    conversionmap[v.second]              = &gCompactPlacedVolBuffer[volumeindex];
    //   delete v.second;
  }

  // a little reusable lambda for the pointer conversion
  std::function<VPlacedVolume const *(VPlacedVolume const *)> ConvertOldToNew = [&](VPlacedVolume const *old) {
    if (conversionmap.find(old) == conversionmap.cend()) {
      // std::cerr << "CANNOT CONVERT ... probably already done" << std::endl;
      return old;
    }
    return conversionmap[old];
  };

  // fix pointers to placed volumes referenced in all logical volumes
  for (auto v : fLogicalVolumesMap) {
    LogicalVolume *lvol = v.second;
    auto ndaughter      = lvol->GetDaughtersp()->size();
    for (decltype(ndaughter) i = 0; i < ndaughter; ++i) {
      lvol->GetDaughtersp()->operator[](i) = ConvertOldToNew(lvol->GetDaughtersp()->operator[](i));
    }
  }

  for (auto v : fLogicalVolumesMap) {

    // check if this is a boolean type
    // FIXME: make this shorter!
    {
      using BoolT = UnplacedBooleanVolume<kSubtraction>;
      BoolT *bvol;
      if ((bvol = const_cast<BoolT *>(dynamic_cast<BoolT const *>(v.second->GetUnplacedVolume())))) {
        bvol->SetLeft(ConvertOldToNew(bvol->GetLeft()));
        bvol->SetRight(ConvertOldToNew(bvol->GetRight()));
      }
    }
    {
      using BoolT = UnplacedBooleanVolume<kUnion>;
      BoolT *bvol;
      if ((bvol = const_cast<BoolT *>(dynamic_cast<BoolT const *>(v.second->GetUnplacedVolume())))) {
        bvol->SetLeft(ConvertOldToNew(bvol->GetLeft()));
        bvol->SetRight(ConvertOldToNew(bvol->GetRight()));
      }
    }
    {
      using BoolT = UnplacedBooleanVolume<kIntersection>;
      BoolT *bvol;
      if ((bvol = const_cast<BoolT *>(dynamic_cast<BoolT const *>(v.second->GetUnplacedVolume())))) {
        bvol->SetLeft(ConvertOldToNew(bvol->GetLeft()));
        bvol->SetRight(ConvertOldToNew(bvol->GetRight()));
      }
    }

    // same for scaled shape volume
    UnplacedScaledShape *svol;
    if ((svol = const_cast<UnplacedScaledShape *>(
             dynamic_cast<UnplacedScaledShape const *>(v.second->GetUnplacedVolume())))) {
      svol->SetPlaced(ConvertOldToNew(svol->GetPlaced()));
    }
  }
  // cleanup conversion map ... automatically done

  // fix reference to World in GeoManager ( and everywhere else )
  fWorld = ConvertOldToNew(fWorld);
}

void GeoManager::CloseGeometry()
{
  assert(GetWorld() != nullptr);
  if (fIsClosed) {
    std::cerr << "geometry is already closed; I cannot close it again (very likely this message signifies a "
                 "substational error !!!\n";
  }
  // cache some important variables of this geometry
  GetMaxDepthVisitor depthvisitor;
  visitAllPlacedVolumes(GetWorld(), &depthvisitor, 1);
  fMaxDepth = depthvisitor.getMaxDepth();

  GetTotalNodeCountVisitor totalcountvisitor;
  visitAllPlacedVolumes(GetWorld(), &totalcountvisitor, 1);
  fTotalNodeCount = totalcountvisitor.GetTotalNodeCount();

  // get a consistent state for index - placed volumes lookups
  for (auto element : fPlacedVolumesMap) {
    fVolumeToIndexMap[element.second] = element.first;
  }

  CompactifyMemory();
  vecgeom::ABBoxManager::Instance().InitABBoxesForCompleteGeometry();
  fIsClosed = true;

#ifdef VECGEOM_USE_NAVINDEX
  if (fCacheDepth == 0 || fCacheDepth > fMaxDepth) fCacheDepth = fMaxDepth;
  MakeNavIndexTable(fCacheDepth);
  // auto pretty_bytes = [](unsigned int bytes) {
  //   char buf[50];
  //   const char *suffixes[7] = {"Bytes", "KB", "MB", "GB", "TB", "PB", "EB"};
  //   uint s                  = 0; // which suffix to use
  //   double count            = bytes;
  //   while (count >= 1024 && s++ < 7)
  //     count /= 1024;

  //   if (count - std::floor(count) == 0.0)
  //     sprintf(buf, "%d %s", (int)count, suffixes[s]);
  //   else
  //     sprintf(buf, "%.1f %s", count, suffixes[s]);
  //   std::string sbytes = buf;
  //   return sbytes;
  // };
  // std::cout << "\n============================================================================\n"
  //           << "  Geometry closed in navigation index mode. The table size is "
  //           << pretty_bytes(NavIndexTable::Instance()->GetTableSize()) << "\n  Transformation caching depth is "
  //           << fCacheDepth << "\n"
  //           << "============================================================================\n\n";
#endif
}

void GeoManager::LoadGeometryFromSharedLib(std::string libname, bool close)
{
  void *handle;
  handle = dlopen(libname.c_str(), RTLD_NOW);
  if (!handle) {
    std::cerr << "Error loading geometry shared lib: " << dlerror() << "\n";
  }

  // the create detector "function type":
  typedef VPlacedVolume const *(*CreateFunc_t)();

  // find entry symbol to geometry creation
  // TODO: get rid of hard coded name
  CreateFunc_t create = (CreateFunc_t)dlsym(handle, "_Z16generateDetectorv");

  if (create != nullptr) {
    // call the create function and set the geometry world
    VPlacedVolume const *world = create();
    world->PrintType();
    SetWorld(world);

    // close the geometry
    // TODO: This step often necessitates extensive computation and could be done
    // as part of the shared lib load itself
    if (close)
      CloseGeometry();
    else {
      std::cerr << "Geometry left open for further manipulation; Please close later\n";
    }
  } else {
    std::cerr << "Loading geometry from shared lib failed\n";
  }
  //    dlclose(handle);
}

VPlacedVolume *GeoManager::FindPlacedVolume(const int id)
{
  auto iterator = fPlacedVolumesMap.find(id);
  return (iterator != fPlacedVolumesMap.end()) ? iterator->second : NULL;
}

VPlacedVolume *GeoManager::FindPlacedVolume(char const *const label)
{
  VPlacedVolume *output = NULL;
  bool multiple         = false;
  for (auto v = fPlacedVolumesMap.begin(), v_end = fPlacedVolumesMap.end(); v != v_end; ++v) {
    if (v->second->GetLabel() == label) {
      if (!output) {
        output = v->second;
      } else {
        if (!multiple) {
          multiple = true;
          printf("GeoManager::FindPlacedVolume: Multiple placed volumes with "
                 "identifier \"%s\" found: [%i], ",
                 label, output->id());
        } else {
          printf(", ");
        }
        printf("[%i]", v->second->id());
      }
    }
  }
  if (multiple) printf(". Returning first occurrence.\n");
  return output;
}

LogicalVolume *GeoManager::FindLogicalVolume(const int id)
{
  auto iterator = fLogicalVolumesMap.find(id);
  return (iterator != fLogicalVolumesMap.end()) ? iterator->second : NULL;
}

LogicalVolume *GeoManager::FindLogicalVolume(char const *const label)
{
  LogicalVolume *output = nullptr;
  bool multiple         = false;

  for (const auto &v : fLogicalVolumesMap) {
    const std::string &fullname = (v.second)->GetLabel();

    if (fullname.compare(label) == 0) {
      if (output == nullptr) {
        output = v.second;
      } else {
        if (!multiple) {
          multiple = true;
          printf("GeoManager::FindLogicalVolume: Multiple logical volumes with "
                 "identifier \"%s\" found: [%i], ",
                 label, output->id());
        } else {
          printf(", ");
        }
        printf("[%i]", (v.second)->id());
      }
    }
  }
  if (multiple) printf(". Returning first occurrence.\n");
  return output;
}

int GeoManager::GetLogicalVolumeId(const std::string &label)
{
  const LogicalVolume *lv = this->FindLogicalVolume(label.c_str());
  return (lv == nullptr) ? -1 : lv->id();
}

std::string GeoManager::GetLogicalVolumeLabel(int id)
{
  const LogicalVolume *lv = this->FindLogicalVolume(id);
  return (lv == nullptr) ? "" : lv->GetLabel();
}

void GeoManager::Clear()
{
  fVolumeCount    = 0;
  fTotalNodeCount = 0;
  fWorld          = nullptr;
  fPlacedVolumesMap.clear();
  fLogicalVolumesMap.clear();
  fVolumeToIndexMap.clear();
  fMaxDepth = -1;
  fIsClosed = false;
  // should we also reset the global static id counts?
  LogicalVolume::gIdCount   = 0;
  VPlacedVolume::g_id_count = 0;
  // delete compact buffer for placed volumes
  if (GeoManager::gCompactPlacedVolBuffer != nullptr) {
    free(gCompactPlacedVolBuffer);
    gCompactPlacedVolBuffer = nullptr;
  }

  if (GeoManager::gNavIndex != nullptr) {
    NavIndexTable::Instance()->CleanTable();
    gNavIndex = nullptr;
  }
}

#ifdef VECGEOM_USE_NAVINDEX
bool GeoManager::MakeNavIndexTable(int depth_limit, bool validate) const
{
  if (gNavIndex) {
    std::cerr << "=== GeoManager::MakeNavIndexTable: navigation table already created\n";
    return false;
  }
  bool success = NavIndexTable::Instance()->CreateTable(GetWorld(), getMaxDepth(), depth_limit);
  if (success) {
    gNavIndex = NavIndexTable::Instance()->GetTable();
    NavIndexTable::Instance()->SetVolumeBuffer(gCompactPlacedVolBuffer);
  }
  if (validate) success = NavIndexTable::Instance()->Validate(GetWorld(), getMaxDepth());
  return success;
}
#endif

template <typename Container>
class GetPathsForLogicalVolumeVisitor : public GeoVisitorWithAccessToPath<Container> {
private:
  LogicalVolume const *fReferenceLogicalVolume;
  int fMaxDepth;

public:
  GetPathsForLogicalVolumeVisitor(Container &c, LogicalVolume const *lv, int maxd)
      : GeoVisitorWithAccessToPath<Container>(c), fReferenceLogicalVolume(lv), fMaxDepth(maxd)
  {
  }

  void apply(NavigationState *state, int /* level */)
  {
    if (state->Top()->GetLogicalVolume() == fReferenceLogicalVolume) {
      // the current state is a good one;

      // make a copy and store it in the container for this visitor
      NavigationState *copy = NavigationState::MakeCopy(*state);

      this->c_.push_back(copy);
    }
  }
};

template <typename Visitor>
void GeoManager::visitAllPlacedVolumesWithContext(VPlacedVolume const *currentvolume, Visitor *visitor,
                                                  NavigationState *state, int level) const
{
  if (currentvolume != NULL) {
    state->Push(currentvolume);
    visitor->apply(state, level);
    int size = currentvolume->GetDaughters().size();
    for (int i = 0; i < size; ++i) {
      visitAllPlacedVolumesWithContext(currentvolume->GetDaughters().operator[](i), visitor, state, level + 1);
    }
    state->Pop();
  }
}

template <typename Container>
__attribute__((noinline)) void GeoManager::getAllPathForLogicalVolume(LogicalVolume const *lvol, Container &c) const
{
  NavigationState *state = NavigationState::MakeInstance(getMaxDepth());
  c.clear();
  state->Clear();

  // instantiate the visitor
  GetPathsForLogicalVolumeVisitor<Container> pv(c, lvol, getMaxDepth());

  // now walk the placed volume hierarchy
  visitAllPlacedVolumesWithContext(GetWorld(), &pv, state);
  NavigationState::ReleaseInstance(state);
}

// explicitely init some symbols
template void GeoManager::getAllPathForLogicalVolume(LogicalVolume const *lvol, std::list<NavigationState *> &c) const;
template void GeoManager::getAllPathForLogicalVolume(LogicalVolume const *lvol,
                                                     std::vector<NavigationState *> &c) const;
} // namespace VECGEOM_IMPL_NAMESPACE
} // namespace vecgeom