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
|
#ifndef Alignment_CommonAlignment_Utilities_H
#define Alignment_CommonAlignment_Utilities_H
/** \namespace align
*
* Namespace for common calculations in alignment.
*
* $Date: 2007/10/08 15:22:08 $
* $Revision: 1.10 $
* \author Chung Khim Lae
*/
#include <map>
#include <memory>
#include <vector>
#include "CondCore/CondDB/interface/Time.h"
#include "CondFormats/Alignment/interface/Definitions.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
class Alignable;
class AlignmentParameters;
class AlignmentLevel;
namespace align {
typedef std::vector<Scalar> Scalars;
typedef std::vector<GlobalPoint> GlobalPoints;
typedef std::vector<GlobalVector> GlobalVectors;
typedef std::vector<LocalPoint> LocalPoints;
typedef std::vector<LocalVector> LocalVectors;
typedef std::vector<Alignable*> Alignables;
typedef std::vector<AlignmentParameters*> Parameters;
typedef std::vector<std::unique_ptr<AlignmentLevel> > AlignmentLevels;
typedef std::map<std::pair<Alignable*, Alignable*>, AlgebraicMatrix> Correlations;
using RunNumber = cond::RealTimeType<cond::runnumber>::type;
using RunRange = std::pair<RunNumber, RunNumber>;
using RunRanges = std::vector<RunRange>;
/// Convert rotation matrix to angles about x-, y-, z-axes (frame rotation).
EulerAngles toAngles(const RotationType&);
/// Convert rotation angles about x-, y-, z-axes to matrix.
RotationType toMatrix(const EulerAngles&);
/// Find mother's position from the average of its daughters' positions.
PositionType motherPosition(const std::vector<const PositionType*>& dauPos);
/// Find matrix to rotate from nominal to current vectors.
/// Assume both sets of vectors have the same size and order.
RotationType diffRot(const GlobalVectors& current, const GlobalVectors& nominal);
GlobalVector diffR(const GlobalVectors& current, const GlobalVectors& nominal);
/// Find the CM of a set of points
GlobalVector centerOfMass(const GlobalVectors& theVs);
/// Correct a rotation matrix for rounding errors.
void rectify(RotationType&);
RunRanges makeNonOverlappingRunRanges(const edm::VParameterSet& runRanges, const RunNumber& defaultRun);
RunRanges makeUniqueRunRanges(const edm::VParameterSet& runRanges, const RunNumber& defaultRun);
} // namespace align
#endif
|