本文整理汇总了C++中Position::GetCoordinates方法的典型用法代码示例。如果您正苦于以下问题:C++ Position::GetCoordinates方法的具体用法?C++ Position::GetCoordinates怎么用?C++ Position::GetCoordinates使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Position
的用法示例。
在下文中一共展示了Position::GetCoordinates方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: position
/**
* Returns the global position from a given cell ID
*/
Position IDDecoder::position(const CellID& cell) const {
double l[3];
double g[3];
DetElement det = this->detectorElement(cell);
Position local = this->findReadout(det).segmentation().position(cell);
local.GetCoordinates(l);
// FIXME: direct lookup of transformations seems to be broken
//const TGeoMatrix& localToGlobal = _volumeManager.worldTransformation(cell);
const TGeoMatrix& localToGlobal = det.worldTransformation();
localToGlobal.LocalToMaster(l, g);
return Position(g[0], g[1], g[2]);
}
示例2: cellIDFromLocal
/**
* Returns the cell ID from the local position in the given volume ID.
*/
CellID IDDecoder::cellIDFromLocal(const Position& local, const VolumeID volID) const {
double l[3];
double g[3];
local.GetCoordinates(l);
// FIXME: direct lookup of transformations seems to be broken
//const TGeoMatrix& localToGlobal = _volumeManager.worldTransformation(volID);
DetElement det = this->detectorElement(volID);
const TGeoMatrix& localToGlobal = det.worldTransformation();
localToGlobal.LocalToMaster(l, g);
Position global(g[0], g[1], g[2]);
return this->findReadout(det).segmentation().cellID(local, global, volID);
}