-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dl210316rc
- Loading branch information
Showing
1,405 changed files
with
48,321 additions
and
43,743 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#ifndef Alignment_MuonAlignment_AlignableGEMChamber_H | ||
#define Alignment_MuonAlignment_AlignableGEMChamber_H | ||
|
||
/* \class AlignableGEMChamber | ||
* \author Hyunyong Kim - TAMU | ||
*/ | ||
|
||
#include <iosfwd> | ||
#include <iostream> | ||
#include <vector> | ||
|
||
#include "Alignment/CommonAlignment/interface/StructureType.h" | ||
#include "Alignment/CommonAlignment/interface/AlignableDet.h" | ||
|
||
#include "Geometry/CommonDetUnit/interface/GeomDet.h" | ||
#include "Alignment/CommonAlignment/interface/AlignableComposite.h" | ||
|
||
class AlignableGEMChamber : public AlignableDet { | ||
public: | ||
friend std::ostream& operator<<(std::ostream&, const AlignableGEMChamber&); | ||
|
||
AlignableGEMChamber(const GeomDet* geomDet); | ||
|
||
void update(const GeomDet* geomDet); | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#ifndef Alignment_MuonAlignment_AlignableGEMEndcap_H | ||
#define Alignment_MuonAlignment_AlignableGEMEndcap_H | ||
|
||
/* \class AlignableGEMEndcap | ||
* \author Hyunyong Kim - TAMU | ||
*/ | ||
|
||
#include "Alignment/CommonAlignment/interface/Utilities.h" | ||
#include "Alignment/CommonAlignment/interface/AlignableComposite.h" | ||
#include "Alignment/CommonAlignment/interface/AlignableSurface.h" | ||
|
||
#include "Alignment/MuonAlignment/interface/AlignableGEMStation.h" | ||
|
||
#include <vector> | ||
|
||
class GeomDet; | ||
|
||
class AlignableGEMEndcap : public AlignableComposite { | ||
public: | ||
AlignableGEMEndcap(const std::vector<AlignableGEMStation*>& GEMStations); | ||
|
||
PositionType computePosition(); | ||
|
||
RotationType computeOrientation(); | ||
|
||
AlignableSurface computeSurface(); | ||
|
||
AlignableGEMStation& station(int i); | ||
|
||
friend std::ostream& operator<<(std::ostream&, const AlignableGEMEndcap&); | ||
|
||
void dump(void) const override; | ||
|
||
Alignments* alignments() const override; | ||
|
||
AlignmentErrorsExtended* alignmentErrors() const override; | ||
|
||
private: | ||
std::vector<AlignableGEMStation*> theGEMStations; | ||
}; | ||
|
||
#endif |
Oops, something went wrong.