-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Martin
committed
Nov 1, 2021
1 parent
99a1611
commit 66eb6e8
Showing
10 changed files
with
72 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include "DataFormats/MuonReco/interface/MuonDTRecHitCluster.h" | ||
|
||
reco::MuonDTRecHitCluster::MuonDTRecHitCluster(const float x,const float y,const float z,const int size,const int nMB1, rechits rh) | ||
: MuonRecHitCluster(x,y,z,size){ | ||
|
||
nMB1_ = nMB1; | ||
for(unsigned i=0; i< rh.size();i++){ | ||
addDaughter(rh[i]); | ||
} | ||
|
||
} | ||
|
||
reco::MuonDTRecHitCluster::~MuonDTRecHitCluster() { | ||
|
||
} |
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,13 @@ | ||
#include "DataFormats/MuonReco/interface/MuonRecHitCluster.h" | ||
|
||
reco::MuonRecHitCluster::MuonRecHitCluster(const float x,const float y, const float z,const int size){ | ||
x_ = x; | ||
y_ = y; | ||
z_ = z; | ||
size_ = size; | ||
|
||
} | ||
|
||
reco::MuonRecHitCluster::~MuonRecHitCluster() { | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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