Go to the source code of this file.
Classes | |
class | Basic3DVector< long double > |
Typedefs | |
typedef Basic3DVector< long double > | Basic3DVectorLD |
typedef Geom::Cylindrical2Cartesian< T > | Cylindrical |
typedef Basic3DVector< T > | MathVector |
typedef Spherical | Polar |
typedef T | ScalarType |
typedef Geom::Spherical2Cartesian< T > | Spherical |
typedef long double | T |
Functions | |
template<> | |
class Basic3DVector< long double > | __attribute__ ((aligned(16))) |
T | barePhi () const |
T | bareTheta () const |
Basic3DVector () | |
template<typename U > | |
Basic3DVector (const Geom::Theta< U > &theta, const Geom::Phi< U > &phi, const T &r) | |
template<class U > | |
Basic3DVector (const Basic3DVector< U > &p) | |
Copy constructor and implicit conversion from Basic3DVector of different precision. | |
Basic3DVector (const Basic2DVector< T > &p) | |
constructor from 2D vector (X and Y from 2D vector, z set to zero) | |
Basic3DVector (const Basic3DVector &p) | |
Copy constructor from same type. Should not be needed but for gcc bug 12685. | |
template<class OtherPoint > | |
Basic3DVector (const OtherPoint &p) | |
Basic3DVector (const T &x, const T &y, const T &z) | |
construct from cartesian coordinates | |
Basic3DVector | cross (const Basic3DVector &v) const |
Vector product, or "cross" product, with a vector of same type. | |
template<class U > | |
Basic3DVector< typename PreciseFloatType< T, U >::Type > | cross (const Basic3DVector< U > &v) const |
T | dot (const Basic3DVector &v) const |
Scalar product, or "dot" product, with a vector of same type. | |
template<class U > | |
PreciseFloatType< T, U >::Type | dot (const Basic3DVector< U > &v) const |
T | eta () const |
T | mag () const |
The vector magnitude. Equivalent to sqrt(vec.mag2()) | |
T | mag2 () const |
The vector magnitude squared. Equivalent to vec.dot(vec) | |
template<typename S > | |
Basic3DVector< long double > | operator* (S t, const Basic3DVector< long double > &v) |
long double | operator* (const Basic3DVector< long double > &v1, const Basic3DVector< long double > &v2) |
scalar product of vectors of same precision | |
template<class U > | |
PreciseFloatType< long double, U >::Type | operator* (const Basic3DVector< long double > &v1, const Basic3DVector< U > &v2) |
scalar product of vectors of different precision | |
template<class U > | |
PreciseFloatType< long double, U >::Type | operator* (const Basic3DVector< U > &v1, const Basic3DVector< long double > &v2) |
Basic3DVector< long double > | operator* (const Basic3DVector< long double > &v, long double t) |
Basic3DVector< long double > | operator* (long double t, const Basic3DVector< long double > &v) |
Same as operator*( Vector, Scalar) | |
template<typename S > | |
Basic3DVector< long double > | operator* (const Basic3DVector< long double > &v, S t) |
Basic3DVector & | operator*= (T t) |
Scaling by a scalar value (multiplication) | |
Basic3DVector< long double > | operator+ (const Basic3DVector< long double > &a, const Basic3DVector< long double > &b) |
vector sum and subtraction of vectors of possibly different precision | |
template<class U > | |
Basic3DVector< typename PreciseFloatType< long double, U >::Type > | operator+ (const Basic3DVector< long double > &a, const Basic3DVector< U > &b) |
template<class U > | |
Basic3DVector< typename PreciseFloatType< long double, U >::Type > | operator+ (const Basic3DVector< U > &a, const Basic3DVector< long double > &b) |
template<class U > | |
Basic3DVector & | operator+= (const Basic3DVector< U > &p) |
Basic3DVector< long double > | operator- (const Basic3DVector< long double > &a, const Basic3DVector< long double > &b) |
template<class U > | |
Basic3DVector< typename PreciseFloatType< long double, U >::Type > | operator- (const Basic3DVector< long double > &a, const Basic3DVector< U > &b) |
Basic3DVector | operator- () const |
Unary minus, returns a vector with components (-x(),-y(),-z()) | |
template<class U > | |
Basic3DVector< typename PreciseFloatType< long double, U >::Type > | operator- (const Basic3DVector< U > &a, const Basic3DVector< long double > &b) |
template<class U > | |
Basic3DVector & | operator-= (const Basic3DVector< U > &p) |
template<typename S > | |
Basic3DVector< long double > | operator/ (const Basic3DVector< long double > &v, S s) |
Basic3DVector & | operator/= (T t) |
Scaling by a scalar value (division) | |
bool | operator== (const Basic3DVector &rh) const |
T | perp () const |
Magnitude of transverse component. | |
T | perp2 () const |
Squared magnitude of transverse component. | |
Geom::Phi< T > | phi () const |
Geom::Theta< T > | theta () const |
T | transverse () const |
Another name for perp() | |
Basic3DVector | unit () const |
T | x () const |
Cartesian x coordinate. | |
Basic2DVector< T > | xy () const |
T | y () const |
Cartesian y coordinate. | |
T | z () const |
Cartesian z coordinate. | |
Variables | |
T | theW |
T | theX |
T | theY |
T | theZ |
typedef Basic3DVector<long double> Basic3DVectorLD |
Definition at line 335 of file Basic3DVectorLD.h.
typedef Geom::Cylindrical2Cartesian<T> Cylindrical |
Definition at line 240 of file Basic3DVectorLD.h.
typedef Basic3DVector<T> MathVector |
Definition at line 244 of file Basic3DVectorLD.h.
Definition at line 242 of file Basic3DVectorLD.h.
typedef T ScalarType |
Definition at line 239 of file Basic3DVectorLD.h.
typedef Geom::Spherical2Cartesian<T> Spherical |
Definition at line 241 of file Basic3DVectorLD.h.
typedef long double T |
Definition at line 238 of file Basic3DVectorLD.h.
class Basic3DVector< long double > __attribute__ | ( | (aligned(16)) | ) |
T __attribute__::barePhi | ( | ) | const |
Azimuthal angle. The value is returned in radians, in the range (-pi,pi]. Same precision as the system atan2(x,y) function. The return type is Geom::Phi<T>, see it's documentation.
Definition at line 343 of file Basic3DVectorLD.h.
Referenced by MuonAlignmentAnalyzer::analyze().
T __attribute__::bareTheta | ( | ) | const |
Polar angle. The value is returned in radians, in the range [0,pi] Same precision as the system atan2(x,y) function. The return type is Geom::Phi<T>, see it's documentation.
Definition at line 350 of file Basic3DVectorLD.h.
__attribute__::Basic3DVector | ( | ) |
default constructor uses default constructor of T to initialize the components. For built-in floating-point types this means initialization to zero??? (force init to 0)
Definition at line 250 of file Basic3DVectorLD.h.
__attribute__::Basic3DVector | ( | const Geom::Theta< U > & | theta, |
const Geom::Phi< U > & | phi, | ||
const T & | r | ||
) |
Deprecated construct from polar coordinates, use
Basic3DVector<T>( Basic3DVector<T>::Polar( theta, phi, r)) instead.
Definition at line 301 of file Basic3DVectorLD.h.
__attribute__::Basic3DVector | ( | const Basic3DVector< U > & | p | ) |
Copy constructor and implicit conversion from Basic3DVector of different precision.
Definition at line 258 of file Basic3DVectorLD.h.
{
__attribute__::Basic3DVector | ( | const Basic2DVector< T > & | p | ) |
constructor from 2D vector (X and Y from 2D vector, z set to zero)
Definition at line 262 of file Basic3DVectorLD.h.
__attribute__::Basic3DVector | ( | const Basic3DVector & | p | ) |
Copy constructor from same type. Should not be needed but for gcc bug 12685.
Definition at line 253 of file Basic3DVectorLD.h.
{ typedef Basic3DVector<typename PreciseFloatType<long double,U>::Type> RT;
__attribute__::Basic3DVector | ( | const OtherPoint & | p | ) | [explicit] |
Explicit constructor from other (possibly unrelated) vector classes The only constraint on the argument type is that it has methods x(), y() and z(), and that these methods return a type convertible to T. Examples of use are
construction from a Basic3DVector with different precision
construction from a Hep3Vector
construction from a coordinate system converter
Definition at line 274 of file Basic3DVectorLD.h.
{
Basic3DVector __attribute__::cross | ( | const Basic3DVector & | v | ) | const |
Vector product, or "cross" product, with a vector of same type.
Definition at line 428 of file Basic3DVectorLD.h.
Referenced by RPCSeedPattern::createSeed(), and MSLayersAtAngle::sum2RmRn().
Basic3DVector<typename PreciseFloatType<T,U>::Type> __attribute__::cross | ( | const Basic3DVector< U > & | v | ) | const |
Vector (or cross) product with a vector of different precision. The product is computed without loss of precision. The type of the returned vector is the more precise of the types of the two vectors.
Definition at line 442 of file Basic3DVectorLD.h.
T __attribute__::dot | ( | const Basic3DVector & | v | ) | const |
Scalar product, or "dot" product, with a vector of same type.
Definition at line 413 of file Basic3DVectorLD.h.
Referenced by CaloCellCrossing::CaloCellCrossing(), TwoBodyDecayEstimator::estimate(), DQMStore::extract(), SoftPFElectronTagInfoProducer::fillElecProperties(), SoftPFMuonTagInfoProducer::fillMuonProperties(), Trajectory::geometricalInnermostState(), CastorSD::getEnergyDeposit(), ConversionHitChecker::nHitsBeforeVtx(), PdfWeightProducer::PdfWeightProducer(), AlCaHOCalibProducer::produce(), SoftLepton::relativeEta(), and BtoCharmDecayVertexMerger::resolveBtoDchain().
PreciseFloatType<T,U>::Type __attribute__::dot | ( | const Basic3DVector< U > & | v | ) | const |
Scalar (or dot) product with a vector of different precision. The product is computed without loss of precision. The type of the returned scalar is the more precise of the scalar types of the two vectors.
Definition at line 423 of file Basic3DVectorLD.h.
T __attribute__::eta | ( | ) | const |
Pseudorapidity. Does not check for zero transverse component; in this case the behavior is as for divide-by zero, i.e. system-dependent.
Definition at line 358 of file Basic3DVectorLD.h.
Referenced by FastL1GlobalAlgo::addJet(), StKinFitter::addKinFitInfo(), DBlmapWriter::addLMapHBEFDataset(), XMLProcessor::addLMapHBEFDataset(), LMapLoader::addLMapHBEFDataset(), StripCPEgeometric::WrappedCluster::addSuppressedEdgeStrip(), FWElectronDetailView::addTrackPointsInCaloData(), XMLHTRZeroSuppressionLoader::addZS(), PFEnergyCalibration::Alpha(), TrackerHitAnalyzer::analyze(), HiBasicGenTest::analyze(), HcalRecHitsValidation::analyze(), GlobalHitsHistogrammer::analyze(), VVVValidation::analyze(), MBUEandQCDValidation::analyze(), BasicGenParticleValidation::analyze(), ContainmentCorrectionAnalyzer::analyze(), PhiSymmetryCalibration::analyze(), HCALRecHitAnalyzer::analyze(), MuonPFAnalyzer::analyze(), DTTrigTest::analyze(), JetValidation::analyze(), IsolatedGenParticles::analyze(), HcalDetDiagLaserMonitor::analyze(), HLTMuonMatchAndPlot::analyze(), ZMuMu_efficiencyAnalyzer::analyze(), EERecoSummary::analyze(), EmDQM::analyze(), HLTInclusiveVBFSource::analyze(), JetCorrectorDemo::analyze(), HLTJetMETDQMSource::analyze(), EwkMuLumiMonitorDQM::analyze(), ErsatzMEt::analyze(), HLTHiggsSubAnalysis::analyze(), edm::FlatEGunASCIIWriter::analyze(), HcalCorrPFCalculation::analyze(), HcalRecHitClient::analyze(), RPCRecHitProbability::analyze(), EBTimingClient::analyze(), HcalDetDiagTimingMonitor::analyze(), HLTMonPhotonSource::analyze(), HLTMonSimpleBTag::analyze(), Rivet::MC_LES_HOUCHES_SYSTEMATICS_CMS::analyze(), FactorizedJetCorrectorDemo::analyze(), EcalCosmicsHists::analyze(), EEOccupancyTask::analyze(), HcalDetDiagPedestalMonitor::analyze(), L1TEfficiencyMuons_Offline::analyze(), EBRecoSummary::analyze(), ElectronSeedAnalyzer::analyze(), L1TdeGCT::analyze(), TrackBuildingAnalyzer::analyze(), HLTAlCa::analyze(), HLTMCtruth::analyze(), myFastSimVal::analyze(), DijetMass< Jet >::analyze(), IsolatedParticlesGeneratedJets::analyze(), cms::GammaJetAnalysis::analyze(), HcalSummaryClient::analyze(), FourVectorHLT::analyze(), HLTMonHcalIsoTrack::analyze(), L1TDEMON::analyze(), EwkMuDQM::analyze(), CMSDAS11DijetAnalyzer::analyze(), SimplePhotonAnalyzer::analyze(), HcalTimingMonitorModule::analyze(), HcalDetDiagLEDMonitor::analyze(), HcalRawDataMonitor::analyze(), HLTMonBTagIPSource::analyze(), HcalRecHitsAnalyzer::analyze(), PFJetAnalyzer::analyze(), IsolatedTracksNxN::analyze(), HeavyFlavorValidation::analyze(), HLTMuonPlotter::analyze(), ImpactParameterCalibration::analyze(), EwkElecDQM::analyze(), L1TDTTF::analyze(), MuTriggerAnalyzer::analyze(), HLTHiggsPlotter::analyze(), ElectronStudy::analyze(), JetAnalyzer::analyze(), TopValidation::analyze(), SimHitsValidationHcal::analyzeHits(), HcalSimHitStudy::analyzeHits(), MuScleFitMuonProducer::applyCorrection(), MuScleFitUtils::applySmearing(), CaloTowersCreationAlgo::assignHit(), AlignmentMuonSelector::basicCuts(), CalibrationTrackSelector::basicCuts(), AlignmentTrackSelector::basicCuts(), SiPixelTrackingRecHitsValid::beginJob(), HLTMonSimpleBTag::beginJob(), L1TdeGCT::beginJob(), L1TDEMON::beginJob(), ElectronCalibration::beginJob(), FourVectorHLT::beginJob(), cms::MinBias::beginJob(), cms::Analyzer_minbias::beginJob(), HcalDetDiagLaserMonitor::beginRun(), EcalBoundaryInfoCalculator< EcalDetId >::boundaryRecHits(), FWMuonDetailView::build(), FWElectronDetailView::build(), PFRecoTauTagInfoAlgorithm::buildPFTauTagInfo(), L1TDTTFClient::buildPhiEtaPlotO(), L1TDTTFClient::buildPhiEtaPlotOFC(), TFitParticleEtEtaPhi::calc4Vec(), TopologyWorker::CalcEta(), TopologyWorker::CalcEta2(), HcalObjRepresent::CalcIeta(), CalcIeta(), EnergyResolutionVsLumi::calcmuTot(), CSCTFPtLUT::calcPt(), JetPlusTrackCorrector::calculateCorr(), EnergyResolutionVsLumi::CalculateDegradation(), QuadrupletSeedMerger::calculatePhiEta(), HcalDeadCellClient::calculateProblems(), HcalCoarsePedestalClient::calculateProblems(), HcalDetDiagPedestalClient::calculateProblems(), HcalDigiClient::calculateProblems(), HcalRecHitClient::calculateProblems(), HcalDetDiagNoiseMonitorClient::calculateProblems(), HcalTrigPrimClient::calculateProblems(), HcalDetDiagTimingClient::calculateProblems(), HcalNZSClient::calculateProblems(), HcalBeamClient::calculateProblems(), HcalDetDiagLaserClient::calculateProblems(), HcalHotCellClient::calculateProblems(), HcalRawDataClient::calculateProblems(), PFMETBenchmark::calculateQuantities(), HcalNumberingFromDDD::cell(), EcalTBDaqFormatter::cellIndex(), EcalTB07DaqFormatter::cellIndex(), TB06TreeH2::check(), TB06Tree::check(), DirectTrackerNavigation::checkCompatible(), EmDQM::checkGeneratedParticlesRequirement(), checkHLTMatch(), FWElectronDetailView::checkRange(), HcalDetDiagLEDMonitor::CheckStatus(), HcalDetDiagPedestalMonitor::CheckStatus(), CutBasedElectronID::cicSelection(), PhotonIsolationCalculator::classify(), CutBasedElectronID::classify(), PFRootEventManager::closestParticle(), HFClusterAlgo::clusterize(), egammaisolation::EgammaRecHitExtractor::collect(), SimG4HcalValidation::collectEnergyRdir(), EgammaTowerIsolationNew< NC >::compute(), CandIsolatorFromDeposits::SingleDeposit::compute(), PFCandIsolatorFromDeposits::SingleDeposit::compute(), METManager::computeGenMET(), JetPlusTrackCorrector::correctAA(), JetPartonCorrector::correction(), TauJetCorrector::correction(), SimpleZSPJPTJetCorrector::correctionEtEtaPhiP(), SimpleZSPJPTJetCorrector::correctionPUEtEtaPhiP(), DisplayManager::createGCluster(), DisplayManager::createGGenParticle(), DisplayManager::createGPart(), DisplayManager::createGRecHit(), DisplayManager::createGTrack(), DBlmapWriter::createLMap(), L1MuGMTMerger::createMergedCand(), MuonSeedCreator::createSeed(), pat::ElectronSelector::customSelection_(), muonisolation::IsolatorByNominalEfficiency::cuts(), Histograms::declareHistograms(), EnergyResolutionVsLumi::Decomposition(), PFCandWithSuperClusterExtractor::depositFromObject(), DetectorVector(), FFTJetProducer::determinePileup(), FFTJetProducer::determinePileupDensityFromConfig(), FFTJetProducer::determinePileupDensityFromDB(), DisplayManager::displayCanvas(), HLTTauRefProducer::doElectrons(), HLTTauRefProducer::doJets(), HLTTauRefProducer::doMuons(), HLTTauRefProducer::doPFTaus(), HLTTauRefProducer::doPhotons(), HLTTauRefProducer::doTowers(), TrackAnalyzer::doTrackerSpecificFillHists(), MuonGmtPair::dR(), FWElectronDetailView::drawCrossHair(), ResidualRefitting::dumpTrackRef(), ZeeCalibration::duringLoop(), EcalEleCalibLooper::EBRegionDefinition(), EcalEleCalibLooper::EcalEleCalibLooper(), EcalTBMCInfoProducer::EcalTBMCInfoProducer(), PFEnergyCalibration::EcorrZoneBeforePS(), metsig::SignAlgoResolutions::ElectronPtResolution(), ElectronCalibration::endJob(), ResolutionCreator::endJob(), cms::MinBias::endJob(), HcalRawDataMonitor::endLuminosityBlock(), FSPFProducer::energy_threshold(), PFEnergyCalibration::energyEm(), EvolutionECAL::EquilibriumFractionColorCentersEM(), EcalRecHitWorkerRecover::estimateEnergy(), MuonSeedCreator::estimatePtCSC(), MuonSeedCreator::estimatePtDT(), MuonSeedCreator::estimatePtOverlap(), MuonSeedCreator::estimatePtSingle(), L1CaloHcalScale::et(), L1CaloEcalScale::et(), kinem::eta(), resolutionFunctionType8< T >::etaByPoints(), smearFunctionType6::etaByPoints(), resolutionFunctionType19< T >::etaByPoints(), resolutionFunctionType9< T >::etaByPoints(), etaCorrE1E25(), etaCorrE1E49(), etaCorrE1E9(), RPCConst::etaFromTowerNum(), metsig::SignAlgoResolutions::eval(), metsig::SignAlgoResolutions::evalPF(), MuonCaloCompatibility::evaluate(), PFPhotonAlgo::EvaluateGCorrMVA(), PFEGammaAlgo::EvaluateGCorrMVA(), GflashShowino::evaluateLengths(), PFPhotonAlgo::EvaluateResMVA(), AlignmentMonitorTracksFromTrajectories::event(), GFlashEMShowerModel::excludeDetectorRegion(), GflashHadronShowerModel::excludeDetectorRegion(), GflashEMShowerModel::excludeDetectorRegion(), DDHCalTestBeamAlgo::execute(), spr::extraIds(), PropagateToMuon::extrapolate(), HiEgammaSCEnergyCorrectionAlgo::fEta(), SimG4HcalValidation::fetchHits(), HiEgammaSCEnergyCorrectionAlgo::fEtEta(), fEtEtaCorr(), FFTGenericScaleCalculator::FFTGenericScaleCalculator(), SimG4HcalValidation::fill(), TopDiLeptonOffline::MonitorEnsemble::fill(), HResolutionVSPart::Fill(), HcalTestAnalysis::fill(), HcalRecHitMonitor::fill_Nevents(), HcalCoarsePedestalMonitor::fill_Nevents(), HcalDigiMonitor::fill_Nevents(), AlCaElectronsTest::fillAroundBarrel(), DQMSourceEleCalib::fillAroundBarrel(), HcalTB06Analysis::fillBuffer(), HcalTB04Analysis::fillBuffer(), AnalysisRootpleProducer::fillCaloJet(), AnalysisRootpleProducer::fillChargedJet(), AnalysisRootpleProducerOnlyMC::fillChargedJet(), PFRootEventManager::fillClusterMask(), FWECALDetailViewBuilder::fillData(), fillDefaults(), MuonSimHitsValidAnalyzer::fillDT(), ECALRecHitAnalyzer::FillGeometry(), HCALRecHitAnalyzer::FillGeometry(), HLTMon::fillHistos(), HcalDetDiagLEDMonitor::fillHistos(), EmDQM::fillHistos(), EmDQMReco::fillHistos(), HcalDetDiagPedestalMonitor::fillHistos(), HcalDetDiagLaserMonitor::fillHistos(), GenericBenchmark::fillHistos(), HLTMonPhotonSource::fillHistos(), HLTMonElectron::fillHistos(), TrackAnalyzer::fillHistosForState(), HcalTestHistoClass::fillHits(), AnalysisRootpleProducer::fillInclusiveJet(), AnalysisRootpleProducerOnlyMC::fillInclusiveJet(), Py8toJetInput::fillJetAlgoInput(), FastL1GlobalAlgo::FillL1RegionsTP(), ZeeCalibration::fillMCmap(), AnalysisRootpleProducer::fillMCParticles(), AnalysisRootpleProducerOnlyMC::fillMCParticles(), JetMETHLTOfflineSource::fillMEforEffAllTrigger(), JetMETHLTOfflineSource::fillMEforEffWrtMBTrigger(), JetMETHLTOfflineSource::fillMEforEffWrtMuTrigger(), JetMETHLTOfflineSource::fillMEforMonAllTrigger(), JetMETHLTOfflineSource::fillMEforMonAllTriggerwrtMuonTrigger(), FastL1GlobalAlgo::FillMET(), GlobalHitsProducer::fillMuon(), GlobalHitsProdHist::fillMuon(), GlobalHitsAnalyzer::fillMuon(), HcalHotCellMonitor::fillNevents_energy(), HcalHotCellMonitor::fillNevents_neighbor(), HcalHotCellMonitor::fillNevents_persistentenergy(), HcalHotCellMonitor::fillNevents_problemCells(), HcalDeadCellMonitor::fillNevents_problemCells(), HcalDeadCellMonitor::fillNevents_recentdigis(), HcalDeadCellMonitor::fillNevents_recentrechits(), objMon< T >::fillOnL1Match(), objMonData< T >::fillOnL1Match(), PFRootEventManager::fillPhotonMask(), PlotMakerL1::fillPlots(), PlotMakerReco::fillPlots(), HcalDetDiagLaserMonitor::fillProblems(), QcdUeDQM::fillpTMaxRelated(), PFRootEventManager::fillRecHitMask(), HcalRecHitsValidation::fillRecHitsTmp(), HcalRecHitsAnalyzer::fillRecHitsTmp(), recoBSVTagInfoValidationAnalyzer::fillRecoToSim(), SVTagInfoValidationAnalyzer::fillRecoToSim(), MuonSimHitsValidAnalyzer::fillRPC(), recoBSVTagInfoValidationAnalyzer::fillSimToReco(), SVTagInfoValidationAnalyzer::fillSimToReco(), FWHFTowerProxyBuilderBase::fillTowerForDetId(), IsolatedGenParticles::fillTrack(), JPTJetAnalyzer::fillTrackHistograms(), AnalysisRootpleProducer::fillTracks(), AnalysisRootpleProducer::fillTracksJet(), EnergyScaleAnalyzer::fillTree(), GlobalHitsProducer::fillTrk(), GlobalHitsProdHist::fillTrk(), GlobalHitsAnalyzer::fillTrk(), FillUnphysicalHEHFBins(), HcalObjRepresent::FillUnphysicalHEHFBins(), EopVariables::fillVariables(), pat::CaloJetSelector::filter(), PythiaFilterZJetWithOutBg::filter(), EcalDeadCellBoundaryEnergyFilter::filter(), WZInterestingEventSelector::filter(), WMuNuSelector::filter(), PythiaFilterEMJetHeep::filter(), FFTJetDijetFilter::filter(), ZToMuMuSelector::filter(), WMuNuValidator::filter(), PythiaFilterZJet::filter(), reco::CentralityProducer::filter(), cms::FastSimDataFilter::filter(), ElectronSeedProducer::filterClusters(), FWHFTowerSliceSelector::findBinFromId(), L1GctHardwareJetFinder::findFinalClusters(), FastL1GlobalAlgo::findJets(), PFClusterAlgo::findSeeds(), Gflash::findShowerType(), EcalBoundaryInfoCalculator< EcalDetId >::gapRecHits(), L1ExtraParticlesProd::gctLorentzVector(), gen::Pythia6PartonEGun::generateEvent(), gen::Pythia6EGun::generateEvent(), gen::Pythia6PtGun::generateEvent(), gen::Pythia6JetGun::generateEvent(), gen::Pythia6PartonPtGun::generateEvent(), gen::Py8JetGun::generatePartonsAndHadronize(), gen::Py8EGun::generatePartonsAndHadronize(), gen::Py8PtGun::generatePartonsAndHadronize(), HcalQIEManager::generateQieTable(), get3x3(), get5x5(), HcalDetDiagLaserMonitor::get_ave_subdet(), CxCalculator::getAvgBCEt(), EcalDQMBinningService::getBinMapEB_(), EcalDQMBinningService::getBinMapEcal_(), EcalDQMBinningService::getBinMapEE_(), calib::CalibElectron::getCalibModulesWeights(), Gflash::getCalorimeterNumber(), CxCalculator::getCCx(), CxCalculator::getCCxRemoveSC(), CaloSubdetectorGeometry::getCells(), HcalGeometry::getCells(), EcalDeadCellTriggerPrimitiveFilter::getChannelStatusMaps(), EcalDeadCellDeltaRFilter::getChannelStatusMaps(), CaloSubdetectorGeometry::getClosestCell(), PileUpSubtractor::getCone(), CxCalculator::getCorrection(), RxCalculator::getCRx(), CxCalculator::getCx(), CxCalculator::getCxRemoveSC(), TFitParticleEtEtaPhi::getDerivative(), L2TauModularIsolationProducer::getECALHits(), L2TauNarrowConeIsolationProducer::getECALHits(), L2TauIsolationProducer::getECALHits(), HCalSD::getEnergyDeposit(), CastorSD::getEnergyDeposit(), ZdcSD::getEnergyDeposit(), MTVHistoProducerAlgoForTracker::getEta(), MuonTrackValidatorBase::getEta(), ReflectedIterator::getEta(), ParametrizedSubtractor::getEta(), MultipleAlgoIterator::getEta(), TEcnaNumbering::GetEta(), CovarianceMatrix::getEtaDependentScaleFactor(), HcalNumberingFromDDD::getEtaHO(), MuonErrorMatrix::getFast(), L2TauModularIsolationProducer::getHCALHits(), L2TauNarrowConeIsolationProducer::getHCALHits(), EgammaHcalIsolation::getHcalSum(), EcalTrivialConditionRetriever::getIntercalibConstantsFromConfiguration(), CxCalculator::getJc(), CxCalculator::getJcc(), TxCalculator::getJct(), TxCalculator::getJt(), CalibrationCluster::getMap(), TxCalculator::getMPT(), CxCalculator::getNBC(), ParticleTowerProducer::getNearestTower(), HcalDbOnline::getObject(), L2TauModularIsolationProducer::getPFClusters(), HcalQIEManager::getQIETableFromFile(), FastL1Region::getRegionCenterEtaPhi(), FastL1RegionMap::getRegionCenterEtaPhi(), RxCalculator::getRFx(), RxCalculator::getROx(), RxCalculator::getRx(), EgammaRecHitIsolation::getSum_(), EcalBarrelNumberingScheme::getUnitID(), HcalTB02HcalNumberingScheme::getUnitID(), EcalClusterEnergyUncertainty::getValue(), EcalClusterEnergyCorrection::getValue(), pat::helper::IsoDepositIsolator::getValue(), EcalClusterEnergyUncertaintyObjectSpecific::getValue(), L1MuGMTSortRankUnit::getVeryLowQualityLevel(), MEEBGeom::globalCoord(), ConvBremSeedProducer::GoodCluster(), EcalHitMaker::hcalCellLine(), HcalNumberingFromDDD::HcalCellTypes(), reco::hcalSubdetector(), JetMaker::hcalSubdetector(), L1RCTORCAMap::highEtaMap(), HLTRPCTrigNoSyncFilter::hltFilter(), HLTMuonL1RegionalFilter::hltFilter(), HLTHcalTowerFilter::hltFilter(), HLTJetPairDzMatchFilter< T >::hltFilter(), HLTSingleVertexPixelTrackFilter::hltFilter(), HLTPFTauPairLeadTrackDzMatchFilter::hltFilter(), reco::HLTTau::HLTTau(), HResolution::HResolution(), HcalDetDiagLEDClient::htmlOutput(), ZDCMonitorClient::htmlOutput(), HcalDetDiagPedestalClient::htmlOutput(), HSCPValidator::IncreasedTreshold(), HSCPHLTFilter::IncreasedTreshold(), SiStripRegionCabling::increment(), pftools::CaloWindow::init(), PhotonFixCMS::initialise(), DDHCalTestBeamAlgo::initialize(), DDHCalTBZposAlgo::initialize(), EcalDeadCellDeltaRFilter::isCloseToBadEcalChannel(), L1MuGMTSortRankUnit::isDisabled(), H4Geom::isInFirstHalf(), EgammaHLTHcalIsolationDoubleCone::isolPtSum(), EcalRawToRecHitRoI::Jet_OneL1JetCollection(), EcalListOfFEDSProducer::Jets(), ESListOfFEDSProducer::Jets(), L1CaloEcalScale::L1CaloEcalScale(), L1CaloHcalScale::L1CaloHcalScale(), L1GctEmCand::L1GctEmCand(), L1MuDTEtaPatternLut::load(), L1MuDTQualPatternLut::load(), FFTJetPileupProcessor::loadFlatteningFactors(), DisplayManager::lookForGenParticle(), DisplayManager::lookForMaxRecHit(), L1RCTORCAMap::lowEtaMap(), main(), L1RCTORCAMap::makeBarrelData(), CaloTowerHardcodeGeometryLoader::makeCell(), HcalDDDGeometryLoader::makeCell(), XMLDocument::makeChId(), HFClusterAlgo::makeCluster(), L1GctHardwareJetFinder::makeProtoJet(), hcalCalib::makeTextFile(), lhef::JetMatchingMLM::match(), HeavyFlavorValidation::match(), StripCPEgeometric::WrappedCluster::maxProjection(), L1MuGMTMerger::merge_rank(), MLP_Stochastic(), MultiTrajectoryStateMode::momentumFromModePPhiEta(), mtrTransfer(), EcalRawToRecHitRoI::Muon(), EcalListOfFEDSProducer::Muon(), ESListOfFEDSProducer::Muon(), reco::Mustache::MustacheClust(), HeavyFlavorValidation::myBook2D(), HeavyFlavorValidation::myBookProfile2D(), HcalConstantsXMLWriter::newCellLine(), muonisolation::CaloExtractor::noiseEcal(), muonisolation::CaloExtractorByAssociator::noiseEcal(), SiStripMonitorMuonHLT::Normalizer(), SimG4HcalValidation::nxNAnalysis(), pat::ObjectResolutionCalc::obsRes(), OnDemandMeasurementTracker::OnDemandMeasurementTracker(), EcalRawToRecHitRoI::OneCandCollection(), TrackClassFilter::operator()(), EtaRangeSelector::operator()(), backgroundFunctionType4::operator()(), backgroundFunctionType5::operator()(), TrackClassMatch::operator()(), HcalChannelId::operator<(), parse_peak_member_function(), Generator::particlePassesPrimaryCuts(), PhysicsVector(), PhysicsVectorRaw(), TopologyWorker::planes_sphe(), TopologyWorker::planes_sphe_wei(), PlotOccupancyMap(), HcalMonitorClient::PlotPedestalValues(), SiStripRegionCabling::positionIndex(), CaloMiscalibMapHcal::prefillMap(), PFRootEventManager::printCluster(), PFRootEventManager::printGenParticles(), FBaseSimEvent::printMCTruth(), PFRootEventManager::printRecHit(), HcalNumberingFromDDD::printTile(), PFAlgoTestBenchElectrons::processBlock(), HcalCaloTowerMonitor::processEvent(), HcalDeadCellMonitor::processEvent(), HcalBeamMonitor::processEvent(), PFRootEventManagerColin::processNeutral(), IsoTracks::produce(), JetCrystalsAssociator::produce(), edm::ExpoRandomPtGunProducer::produce(), JetTracksAssociationDRVertexAssigned::produce(), FlavorHistoryProducer::produce(), L2MuonSeedGenerator::produce(), L1ExtraParticlesProd::produce(), GamIsoDetIdCollectionProducer::produce(), edm::FlatRandomOneOverPtGunProducer::produce(), edm::FlatRandomPtGunProducer::produce(), TtSemiLepHitFitProducer< LeptonCollection >::produce(), JetTracksAssociationDRVertex::produce(), JetTracksAssociationDRCalo::produce(), FFTJetPFPileupCleaner::produce(), EleIsoDetIdCollectionProducer::produce(), JetVetoedTracksAssociationDRVertex::produce(), edm::FlatRandomEGunProducer::produce(), ShallowTracksProducer::produce(), GenHIEventProducer::produce(), cms::AlCaDiJetsProducer::produce(), edm::MultiParticleInConeGunProducer::produce(), ParticleTowerProducer::produce(), ShallowSimTracksProducer::produce(), L1GctInternJetProducer::produce(), reco::modules::CaloRecHitCandidateProducer< HitCollection >::produce(), IsolatedPixelTrackCandidateProducer::produce(), PATHemisphereProducer::produce(), ShallowClustersProducer::produce(), EcalTrivialConditionRetriever::produceEcalLaserAPDPNRatios(), EcalTrivialConditionRetriever::produceEcalPedestals(), SiStripRegionConnectivity::produceRegionCabling(), CSCTFPtMethods::Pt2Stn(), CSCTFPtMethods::Pt3Stn(), MuonSeedPtExtractor::pT_extract(), CSCTFPtMethods::PtEff90(), HITSiStripRawToClustersRoI::ptracks(), L1CaloEcalScale::rank(), L1CaloHcalScale::rank(), StoreEcalCondition::readEcalGainRatiosFromFile(), L1MuGMTHWFileReader::readNextEvent(), HemisphereAlgo::reconstruct(), MuonTrackingRegionBuilder::region(), L1GctInternEmCand::regionId(), L1GctEmCand::regionId(), L1GctJetCand::regionId(), HcalHitRelabeller::relabel(), TB06RecoH2::reset(), HcalRawDataMonitor::reset(), TB06TreeH2::reset(), TB06Reco::reset(), TB06Tree::reset(), muonisolation::IsolatorByDeposit::result(), muonisolation::IsolatorByDepositCount::result(), MuonErrorMatrix::Rms(), CutBasedElectronID::robustSelection(), hitfit::roteta(), L1MuonPixelTrackFitter::run(), EcalRecHitWorkerRecover::run(), HIPAlignmentAlgorithm::run(), CMSIterativeConeAlgorithm::run(), L1MuGMTEtaProjectionUnit::run(), L1MuGMTPhiProjectionUnit::run(), MuonMillepedeAlgorithm::run(), ConvBremPFTrackFinder::runConvBremFinder(), ecaldqm::ClusterTask::runOnBasicClusters(), HcalDetDiagLaserMonitor::SaveRaddamData(), HcalDetDiagPedestalMonitor::SaveReference(), HcalDetDiagLEDMonitor::SaveReference(), HcalDetDiagLaserMonitor::SaveReference(), scaleFunctionType35< T >::scale(), scaleFunctionType51< T >::scale(), scaleFunctionType52< T >::scale(), scaleFunctionType30< T >::scale(), scaleFunctionType33< T >::scale(), scaleFunctionType31< T >::scale(), scaleFunctionType50< T >::scale(), PFSCEnergyCalibration::SCCorrEtEtaEndcap(), MuonSeedCleaner::seedCleaner(), ElectronSeedGenerator::seedsFromThisCluster(), reco::modules::CosmicTrackSelector::select(), ora::QueryableVector< Item >::select(), GsfElectronAlgo::setAmbiguityData(), pftools::PFClusterCalibration::setBarrelBoundary(), L1CaloHcalScale::setBin(), L1CaloEcalScale::setBin(), GsfElectronAlgo::setCutBasedPreselectionFlag(), L1MuGMTDebugBlock::SetEta(), pftools::ParticleDeposit::setEta(), L1GctJetEtCalibrationLut::setEtaBin(), FastL1Region::SetEtaPhiIndex(), egHLT::trigTools::setFiltersObjPasses(), CaloHitResponse::setHBHEScale(), HcalTBEventPosition::setHBHEtableCoords(), FourVectorHLT::PathInfo::setHistos(), HLTMonSimpleBTag::PathInfo::setHistos(), TFitParticleEtEtaPhi::setIni4Vec(), CastorShowerEvent::setPrimEta(), CandCombinerBase< OutputCollection, Cloner::CandPtr >::setup(), EcalGeomPhiSymHelper::setup(), FWPFBlockProxyBuilder::setupClusterElement(), CovarianceMatrix::setupMatrix(), FWPFClusterLegoProxyBuilder::sharedBuild(), FWECALDetailViewBuilder::showSuperClusters(), L1DummyProducer::SimpleDigi(), reco::PFRecHit::size(), smearFunctionType6::smear(), L1MuGMTSortRankUnit::sort_rank(), L1MuGMTLFMergeRankEtaQLUT::SpecificLookup(), L1MuGMTMIAUPhiPro1LUT::SpecificLookup(), L1MuGMTLFDisableHotLUT::SpecificLookup(), L1MuGMTLFMergeRankEtaPhiLUT::SpecificLookup(), L1MuGMTMIAUEtaProLUT::SpecificLookup(), L1MuGMTLFPhiProLUT::SpecificLookup(), L1MuGMTLFSortRankEtaPhiLUT::SpecificLookup(), L1MuGMTLFSortRankEtaQLUT::SpecificLookup(), L1MuGMTMIAUPhiPro1LUT::SpecificLookup_cphi_fine(), L1MuGMTMIAUPhiPro1LUT::SpecificLookup_cphi_ofs(), L1MuGMTLFDisableHotLUT::SpecificLookup_disable_hot(), L1MuGMTLFPhiProLUT::SpecificLookup_dphi(), L1MuGMTMIAUEtaProLUT::SpecificLookup_eta_sel(), L1MuGMTLFMergeRankEtaQLUT::SpecificLookup_flag(), L1MuGMTLFMergeRankEtaPhiLUT::SpecificLookup_rank_etaphi(), L1MuGMTLFSortRankEtaPhiLUT::SpecificLookup_rank_etaphi(), L1MuGMTLFMergeRankEtaQLUT::SpecificLookup_rank_etaq(), L1MuGMTLFSortRankEtaQLUT::SpecificLookup_rank_etaq(), L1MuGMTLFSortRankEtaQLUT::SpecificLookup_vlq(), StochStep(), StochStepHyb(), TB06TreeH2::store(), TB06Tree::store(), PFRootEventManager::tauBenchmark(), TBposition(), TrackEfficiencyMonitor::testSTATracks(), TrackEfficiencyMonitor::testTrackerTracks(), L1MuGMTMIAUEtaProLUT::TheLookupFunction(), HcalNumberingFromDDD::tileHB(), HcalNumberingFromDDD::tileHE(), spr::timeOfFlight(), RPCConst::towerNumFromEta(), HcalTestAnalysis::towersToAdd(), MuonNavigableLayer::trackingRange(), PF_PU_FirstVertexTracks::TrackMatch(), translateCoeff(), TtFullHadSignalSel::TtFullHadSignalSel(), undefinedCells(), HcalNumberingFromDDD::unitID(), ZdcTestAnalysis::update(), CastorShowerLibraryMaker::update(), CastorTestAnalysis::update(), FP420Test::update(), DoCastorAnalysis::update(), HcalTestAnalysis::update(), BscTest::update(), EventProgress::update(), JetPartonNamespace::ParametrizationJetParton::value(), MuonErrorMatrix::Value(), reco::isodeposit::OtherCandidatesDeltaRVeto::veto(), reco::isodeposit::OtherJetConstituentsDeltaRVeto::veto(), writeCalibTxt(), writeCMSSWCoeff(), ECALRecHitAnalyzer::WriteECALRecHits(), VirtualJetProducer::writeJets(), Pi0CalibXMLwriter::writeLine(), calibXMLwriter::writeLine(), and HcalDigiMonitor::zeroCounters().
T __attribute__::mag | ( | ) | const |
The vector magnitude. Equivalent to sqrt(vec.mag2())
Definition at line 328 of file Basic3DVectorLD.h.
Referenced by SiPixelDigitizerAlgorithm::accumulateSimHits(), SiStripDigitizerAlgorithm::accumulateSimHits(), ReferenceTrajectory::addMaterialEffectsBrl(), SiStripElectronAnalyzer::analyze(), DTChamberEfficiencyTask::analyze(), TestHits::analyze(), MuonTrackResidualAnalyzer::analyze(), TestSmoothHits::analyze(), MuonDTDigis::analyze(), TrackIPTagPlotter::analyzeTag(), GlobalTrackerMuonAlignment::analyzeTrackTrack(), GlobalTrackerMuonAlignment::analyzeTrackTrajectory(), reco::GhostTrackState::axisDistance(), ThirdHitPrediction::calculateRangesBarrel(), CaloCellCrossing::CaloCellCrossing(), GlobalTrajectoryBuilderBase::checkMuonHits(), VZeroFinder::checkTrackPair(), MuonTrajectoryCleaner::clean(), TkAccumulatingSensitiveDetector::closeHit(), PLTSensitiveDetector::closeHit(), GlobalMuonTrackMatcher::convertToTSOSMuHit(), GlobalMuonTrackMatcher::convertToTSOSTkHit(), MuonSensitiveDetector::createHit(), fireworks::createSegment(), CaloDetIdAssociator::crossedElement(), TangentCircle::curvatureError(), SiLinearChargeDivider::DeconvolutionShape(), OptOMirror::detailedDeviatesLightRay(), TangentCircle::direction(), RK4PreciseStep::distance(), SignedImpactParameter3D::distanceWithJetAxis(), DTSegtoRPC::DTSegtoRPC(), DTDigitizer::dumpHit(), SoftPFElectronTagInfoProducer::fillElecProperties(), SoftPFMuonTagInfoProducer::fillMuonProperties(), DTTimingExtractor::fillTiming(), CSCTimingExtractor::fillTiming(), Trajectory::geometricalInnermostState(), IdealObliquePrism::getCorners(), BetaCalculatorECAL::getDetailedTrackLengthInXtals(), TrackAssociatorByPosition::getState(), CaloCellGeometry::getTransform(), MuonShowerInformationFiller::hitsFromSegments(), CalibrationTrackSelector::isIsolated(), AlignmentTrackSelector::isIsolated(), MuonCosmicCompatibilityFiller::isOverlappingMuon(), IPTools::jetTrackDistance(), HSCPValidator::makeGenPlots(), egHLT::ParticlePair< T >::mass(), GlobalCosmicMuonTrajectoryBuilder::match(), GlobalMuonTrackMatcher::match_D(), GlobalMuonTrackMatcher::match_d(), MatcherUsingTracksAlgorithm::matchByDirectComparison(), MatcherUsingTracksAlgorithm::matchWithPropagation(), NuclearTester::meanHitDistance(), TracksClusteringFromDisplacedSeed::nearTracks(), ConversionHitChecker::nHitsBeforeVtx(), DTTTrigSyncTOFCorr::offset(), DTTTrigSyncFromDB::offset(), MuonShowerInformationFiller::LessMag::operator()(), LinTrackCache::Vicinity::operator()(), RKCurvilinearDistance< T, N >::operator()(), GCC11_FINAL< T, TOPO >::operator()(), MuonTrackResidualAnalyzer::RadiusComparatorInOut::operator()(), RecHitLessByDet::operator()(), reco::TrackResiduals::pack_pull(), reco::TrackResiduals::pack_residual(), egHLT::EgTrigTagProbeCut_NewPho::pass(), egHLT::EgTrigTagProbeCut::pass(), egHLT::EgTagProbeCut< T >::pass(), egHLT::EgTrigTagProbeCut_New::pass(), SiLinearChargeDivider::PeakShape(), PixelCPEBase::PixelCPEBase(), GamIsoDetIdCollectionProducer::produce(), SiStripElectronAssociator::produce(), EleIsoDetIdCollectionProducer::produce(), reco::modules::DuplicateTrackMerger::produce(), reco::modules::CosmicTrackSplitter::produce(), TrackAssociatorByPosition::quality(), GenericTripletGenerator::qualityFilter(), CosmicRegionalSeedGenerator::regions(), SoftLepton::relativeEta(), TrackInfoProducerAlgorithm::run(), DigiSimLinkAlgorithm::run(), MagGeoBuilderFromDDD::volumeHandle::sameSurface(), SeedGeneratorForCosmics::seeds(), PixelCPEBase::setMagField(), DDErrorDetection::so(), DynamicTruncation::sort(), SETSeedFinder::sortByLayer(), GlobalCosmicMuonTrajectoryBuilder::sortHits(), CosmicMuonSmoother::sortHitsAlongMom(), KalmanAlignmentTrackRefitter::sortRecHits(), SeedFromNuclearInteraction::stateWithError(), TangentCircle::TangentCircle(), TangentHelix::TangentHelix(), ThirdHitPredictionFromCircle::transverseIP(), reco::TrackResiduals::unpack_pull(), reco::TrackResiduals::unpack_residual(), CheckSecondary::update(), MuonSensitiveDetector::updateHit(), and MultiVertexFitter::updateSeeds().
{
T __attribute__::mag2 | ( | ) | const |
The vector magnitude squared. Equivalent to vec.dot(vec)
Definition at line 325 of file Basic3DVectorLD.h.
Referenced by ThirdHitPrediction::angleRatio(), fastmath::atan2r(), ThirdHitPrediction::calculateRangesForward(), CaloCellCrossing::CaloCellCrossing(), CaloSegment::CaloSegment(), FastCircle::createCircleParameters(), SimpleNavigableLayer::crossingState(), EcalHitMaker::ecalCellLine(), RawParticle::et(), ThirdHitPrediction::findTouchingCircles(), V0Fitter::fitAll(), EcalShowerProperties::getDistance(), ClusterShapeTrackFilter::getGlobalDirs(), NuclearTrackCorrector::getInitialState(), ThirdHitPrediction::invertCircle(), ThirdHitPrediction::invertPoint(), ThirdHitPrediction::isCompatibleWithMultipleScattering(), SMS::location(), CaloPoint::DistanceToVertex::operator()(), DistanceToCell::operator()(), fftjetcms::JetConvergenceDistance::operator()(), CaloPoint::operator<(), and ThirdHitPredictionFromCircle::HelixRZ::rAtZ().
{
Basic3DVector<long double> operator* | ( | S | t, |
const Basic3DVector< long double > & | v | ||
) | [inline] |
Definition at line 315 of file Basic3DVectorLD.h.
{ return static_cast<long double>(t)*v; }
long double operator* | ( | const Basic3DVector< long double > & | v1, |
const Basic3DVector< long double > & | v2 | ||
) | [inline] |
scalar product of vectors of same precision
Definition at line 282 of file Basic3DVectorLD.h.
References Basic3DVector< long double >::dot().
{ return v1.dot(v2); }
PreciseFloatType<long double,U>::Type operator* | ( | const Basic3DVector< long double > & | v1, |
const Basic3DVector< U > & | v2 | ||
) | [inline] |
scalar product of vectors of different precision
Definition at line 288 of file Basic3DVectorLD.h.
References Basic3DVector< long double >::x(), Basic3DVector< T >::x(), Basic3DVector< long double >::y(), Basic3DVector< T >::y(), Basic3DVector< long double >::z(), and Basic3DVector< T >::z().
PreciseFloatType<long double,U>::Type operator* | ( | const Basic3DVector< U > & | v1, |
const Basic3DVector< long double > & | v2 | ||
) | [inline] |
Definition at line 294 of file Basic3DVectorLD.h.
References Basic3DVector< long double >::x(), Basic3DVector< T >::x(), Basic3DVector< long double >::y(), Basic3DVector< T >::y(), Basic3DVector< long double >::z(), and Basic3DVector< T >::z().
Basic3DVector<long double> operator* | ( | const Basic3DVector< long double > & | v, |
long double | t | ||
) | [inline] |
Multiplication by scalar, does not change the precision of the vector. The return type is the same as the type of the vector argument.
Definition at line 304 of file Basic3DVectorLD.h.
References lumiQTWidget::t, Basic3DVector< long double >::x(), Basic3DVector< long double >::y(), and Basic3DVector< long double >::z().
Basic3DVector<long double> operator* | ( | long double | t, |
const Basic3DVector< long double > & | v | ||
) | [inline] |
Same as operator*( Vector, Scalar)
Definition at line 310 of file Basic3DVectorLD.h.
Basic3DVector<long double> operator* | ( | const Basic3DVector< long double > & | v, |
S | t | ||
) | [inline] |
Definition at line 320 of file Basic3DVectorLD.h.
{ return static_cast<long double>(t)*v; }
Basic3DVector& __attribute__::operator*= | ( | T | t | ) |
Scaling by a scalar value (multiplication)
Definition at line 396 of file Basic3DVectorLD.h.
Basic3DVector<long double> operator+ | ( | const Basic3DVector< long double > & | a, |
const Basic3DVector< long double > & | b | ||
) | [inline] |
vector sum and subtraction of vectors of possibly different precision
Definition at line 239 of file Basic3DVectorLD.h.
Basic3DVector<typename PreciseFloatType<long double,U>::Type> operator+ | ( | const Basic3DVector< long double > & | a, |
const Basic3DVector< U > & | b | ||
) | [inline] |
Definition at line 253 of file Basic3DVectorLD.h.
References Basic3DVector< long double >::x(), Basic3DVector< T >::x(), Basic3DVector< long double >::y(), Basic3DVector< T >::y(), Basic3DVector< long double >::z(), and Basic3DVector< T >::z().
Basic3DVector<typename PreciseFloatType<long double,U>::Type> operator+ | ( | const Basic3DVector< U > & | a, |
const Basic3DVector< long double > & | b | ||
) | [inline] |
Definition at line 260 of file Basic3DVectorLD.h.
Basic3DVector& __attribute__::operator+= | ( | const Basic3DVector< U > & | p | ) |
Operator += with a Basic3DVector of possibly different precision.
Definition at line 375 of file Basic3DVectorLD.h.
Basic3DVector<long double> operator- | ( | const Basic3DVector< long double > & | a, |
const Basic3DVector< long double > & | b | ||
) | [inline] |
Definition at line 244 of file Basic3DVectorLD.h.
References Basic3DVector< long double >::x(), Basic3DVector< long double >::y(), and Basic3DVector< long double >::z().
Basic3DVector<typename PreciseFloatType<long double,U>::Type> operator- | ( | const Basic3DVector< long double > & | a, |
const Basic3DVector< U > & | b | ||
) | [inline] |
Definition at line 268 of file Basic3DVectorLD.h.
References Basic3DVector< long double >::x(), Basic3DVector< T >::x(), Basic3DVector< long double >::y(), Basic3DVector< T >::y(), Basic3DVector< long double >::z(), and Basic3DVector< T >::z().
Basic3DVector __attribute__::operator- | ( | ) | const |
Unary minus, returns a vector with components (-x(),-y(),-z())
Definition at line 393 of file Basic3DVectorLD.h.
Basic3DVector<typename PreciseFloatType<long double,U>::Type> operator- | ( | const Basic3DVector< U > & | a, |
const Basic3DVector< long double > & | b | ||
) | [inline] |
Definition at line 275 of file Basic3DVectorLD.h.
References Basic3DVector< long double >::x(), Basic3DVector< T >::x(), Basic3DVector< long double >::y(), Basic3DVector< T >::y(), Basic3DVector< long double >::z(), and Basic3DVector< T >::z().
Basic3DVector& __attribute__::operator-= | ( | const Basic3DVector< U > & | p | ) |
Operator -= with a Basic3DVector of possibly different precision.
Definition at line 385 of file Basic3DVectorLD.h.
Basic3DVector<long double> operator/ | ( | const Basic3DVector< long double > & | v, |
S | s | ||
) | [inline] |
Division by scalar, does not change the precision of the vector. The return type is the same as the type of the vector argument.
Definition at line 329 of file Basic3DVectorLD.h.
References alignCSCRings::s.
Basic3DVector& __attribute__::operator/= | ( | T | t | ) |
Scaling by a scalar value (division)
Definition at line 404 of file Basic3DVectorLD.h.
bool __attribute__::operator== | ( | const Basic3DVector & | rh | ) | const |
Definition at line 320 of file Basic3DVectorLD.h.
References lumiQTWidget::t.
T __attribute__::perp | ( | ) | const |
Magnitude of transverse component.
Definition at line 334 of file Basic3DVectorLD.h.
Referenced by CMSTopTagger::_find_min_mass(), MBUEandQCDValidation::analyze(), ElectronMcSignalValidator::analyze(), DrellYanValidation::analyze(), MuonAlignmentAnalyzer::analyze(), TOBLayerBuilder::build(), ZeeCalibration::fillEleInfo(), HcalFlexiHardcodeGeometryLoader::fillHE(), PHcalValidInfoLayer::fillHF(), GlobalHitsProdHist::fillMuon(), GlobalHitsAnalyzer::fillMuon(), GlobalHitsProducer::fillMuon(), GlobalHitsAnalyzer::fillTrk(), GlobalHitsProducer::fillTrk(), GlobalHitsProdHist::fillTrk(), SiStripElectronAlgo::findElectron(), MuonShowerInformationFiller::findPerpCluster(), Trajectory::geometricalInnermostState(), CaloGeometryHelper::getClosestCell(), TrackFitter::getCotThetaAndUpdateZip(), TkLasBeamFitter::getLasBeams(), reco::GhostTrackPrediction::GhostTrackPrediction(), TkLasBeamFitter::globalTrackPoint(), TrackingRecHitLessFromGlobalPosition::insideOutLess(), MaterialAccountingGroup::MaterialAccountingGroup(), CompareTwoTracksVectors::operator()(), ThirdHitZPrediction::operator()(), TangentApproachInRPhi::perpdist(), GamIsoDetIdCollectionProducer::produce(), EleIsoDetIdCollectionProducer::produce(), SoftLepton::refineJetAxis(), and cms::CATopJetProducer::runAlgorithm().
T __attribute__::perp2 | ( | ) | const |
Squared magnitude of transverse component.
Definition at line 331 of file Basic3DVectorLD.h.
Referenced by SimpleMetricsUpdator::additionalSelectionCriterion(), PixelClusterShapeSeedComparitor::compatible(), TwoBodyDecayLinearizationPointFinder::getLinearizationPoint(), FastHelix::helixStateAtVertex(), reco::GhostTrackPrediction::init(), and CMSTopTagger::result().
Definition at line 344 of file Basic3DVectorLD.h.
Geom::Theta<T> __attribute__::theta | ( | ) | const |
Definition at line 351 of file Basic3DVectorLD.h.
Referenced by GflashTrajectory::_refreshCache(), FastL1GlobalAlgo::addJet(), Hector::addPartToHepMC(), fireworks::addStraightLineSegment(), HCALRecHitAnalyzer::analyze(), EcalTPGParamBuilder::analyze(), edm::FlatEGunASCIIWriter::analyze(), TrackBuildingAnalyzer::analyze(), ElectronTagProbeAnalyzer::analyze(), TrackerHitAnalyzer::analyze(), EcalTrigPrimAnalyzer::analyze(), MuonDTDigis::analyze(), MuonBremsstrahlungSimulator::brem(), BremsstrahlungSimulator::brem(), FWMET3DProxyBuilder::build(), FWTauProxyBuilderBase::buildBaseTau(), FWECALDetailViewBuilder::buildCaloData(), FWPFClusterRPZUtils::buildRhoZClusterLineSet(), FWJetProxyBuilder::buildViewType(), FWMETProxyBuilder::buildViewType(), TFitParticleEtThetaPhi::calc4Vec(), TFitParticleMCPInvSpher::calc4Vec(), TFitParticleSpher::calc4Vec(), TFitParticleMCSpher::calc4Vec(), TFitParticleESpher::calc4Vec(), CSCHaloAlgo::Calculate(), TwoBodyDecayModel::cartesianSecondaryMomenta(), NuclearInteractionSimulator::compute(), MultipleScatteringSimulator::compute(), CaloMETAnalyzer::computeEmHaMET(), AnalyticalCurvilinearJacobian::computeFullJacobian(), HDRShower::computeShower(), DTDigitizer::computeTime(), EcalHitMaker::configureGeometry(), DDHCalEndcapAlgo::constructInsideModule(), DDHCalEndcapAlgo::constructInsideModule0(), fireworks::createSegment(), ZMuMuIsolationAnalyzer::Deposits(), Decay3Body::doDecay(), CSCValidation::doSegments(), DTDigitizer::driftTimeFromParametrization(), DTBtiChip::DTBtiChip(), ECALPositionCalculator::ecalEta(), RawParticle::eta(), metsig::SignAlgoResolutions::eval(), DDTECAxialCableAlgo::execute(), DDHCalXtalAlgo::execute(), DDHCalTBZposAlgo::execute(), DDTIBLayerAlgo_MTCC::execute(), DDTECOptoHybAlgo::execute(), DDTECPhiAltAlgo::execute(), DDEcalBarrelNewAlgo::execute(), DDEcalBarrelAlgo::execute(), DDHCalTestBeamAlgo::execute(), DDTIDAxialCableAlgo::execute(), DDTrackerPhiAltAlgo::execute(), DDTIBLayerAlgo::execute(), DDTIDRingAlgo::execute(), DDTrackerAngular::execute(), DDTrackerPhiAlgo::execute(), DDAngular::execute(), DDTECPhiAlgo::execute(), DDTrackerAngularV1::execute(), KinematicPerigeeConversions::extendedPerigeeFromKinematicParameters(), SimG4HcalValidation::fill(), HcalTestAnalysis::fill(), HcalTB06Analysis::fillBuffer(), HcalTB04Analysis::fillBuffer(), GenSpecificAlgo::fillCommonMETData(), TrackerHitProducer::fillG4MC(), TrackAnalyzer::fillHistosForState(), FastL1GlobalAlgo::FillMET(), reco::Mustache::FillMustacheVar(), NtupleManager::FillOptObjects(), EopVariables::fillVariables(), SETFilter::find3MoreStartingPoints(), spr::findDetIdECAL(), spr::findDetIdHCAL(), SETFilter::findMinChi2(), MuonShowerInformationFiller::findThetaCluster(), OutInConversionSeedFinder::fixPointRadius(), PerigeeConversions::ftsToPerigeeParameters(), calib::CalibElectron::getCalibModulesWeights(), TCTauAlgorithm::getCellMomentum(), EcalDeadCellTriggerPrimitiveFilter::getChannelStatusMaps(), EcalDeadCellDeltaRFilter::getChannelStatusMaps(), TFitParticleMCPInvSpher::getDerivative(), TFitParticleSpher::getDerivative(), TFitParticleEtThetaPhi::getDerivative(), TFitParticleMCSpher::getDerivative(), TFitParticleESpher::getDerivative(), L2TauModularIsolationProducer::getECALHits(), L2TauNarrowConeIsolationProducer::getECALHits(), L2TauIsolationProducer::getECALHits(), CastorSD::getEnergyDeposit(), ZdcSD::getEnergyDeposit(), IsolatedPixelTrackCandidateProducer::GetEtaPhiAtEcal(), PythiaFilterIsolatedTrack::GetEtaPhiAtEcal(), reco::TauMassTagInfo::getInvariantMass(), CastorShowerLibraryMaker::GetKinematics(), TwoBodyDecayLinearizationPointFinder::getLinearizationPoint(), pftools::CaloEllipse::getMajorMinorAxes(), L2TauModularIsolationProducer::getPFClusters(), CastorShowerLibrary::getShowerHits(), pftools::CaloEllipse::getTheta(), CaloCellId::getThetaCell(), DDHCalTestBeamAlgo::initialize(), DDHCalTBZposAlgo::initialize(), MuonMesh::isClusteredWith(), MuonMesh::isDuplicateOf(), HcalDDDGeometryLoader::makeCell(), fireworks::makeRhoZSuperCluster(), PFSpecificAlgo::mkSpecificPFMETData(), FinalTreeBuilder::momentumPart(), CosmicGenFilterHelix::monitorStart(), muonisolation::CaloExtractor::MuonAtCaloPosition(), GCC11_FINAL< T, TOPO >::openingAngle(), PixelTrackFilterByKinematics::operator()(), FTSFromVertexToPointFactory::operator()(), SimG4HcalHitCluster::operator+=(), reco::PreshowerCluster::operator<(), PrimaryVertexAnalyzer4PU::printPVTrks(), DDLTrapezoid::processElement(), edm::ExpoRandomPtGunProducer::produce(), JetCrystalsAssociator::produce(), pf2pat::PFMETAlgo::produce(), L2MuonSeedGenerator::produce(), edm::FileRandomKEThetaGunProducer::produce(), edm::FlatRandomOneOverPtGunProducer::produce(), edm::FlatRandomPtGunProducer::produce(), edm::FlatRandomEThetaGunProducer::produce(), edm::FlatRandomEGunProducer::produce(), ShallowTracksProducer::produce(), edm::FlatRandomPtThetaGunProducer::produce(), edm::MultiParticleInConeGunProducer::produce(), ShallowSimTracksProducer::produce(), TrackKinematicStatePropagator::propagateToTheTransversePCANeutral(), AsciiNeutronReader::readNextEvent(), METManager::recomputePFMET(), MuonTrackingRegionBuilder::region(), EcalRecHitWorkerRecover::run(), KFBasedPixelFitter::run(), PFEGammaAlgo::RunPFEG(), PFPhotonAlgo::RunPFPhoton(), TPtoRecoTrack::s_eta(), RecoTracktoTP::s_eta(), EcalDeadCellTriggerPrimitiveFilter::setEvtRecHitstatus(), TFitParticleSpher::setIni4Vec(), TFitParticleESpher::setIni4Vec(), TFitParticleMCSpher::setIni4Vec(), TFitParticleEtThetaPhi::setIni4Vec(), TFitParticleMCPInvSpher::setIni4Vec(), HcalForwardAnalysis::setPhotons(), EcalSelectiveReadoutValidation::setTtEtSums(), EcalSelectiveReadoutSuppressor::setTtFlags(), DTRecHitQuality::simHitImpactAngle(), smearFunctionBase::smearEta(), TangentCircle::TangentCircle(), kinem::theta(), HDRShower::thetaFunction(), HcalTB04Analysis::timeOfFlight(), HcalTestAnalysis::timeOfFlight(), spr::timeOfFlight(), SiStripFineDelayTOF::timeOfFlightBeamB(), SiStripFineDelayTOF::timeOfFlightCosmicB(), MuonNavigableLayer::trackingRange(), global_linear_1::translation(), global_linear_0::translation(), InvariantMassFromVertex::uncertainty(), HcalNumberingFromDDD::unitID(), CastorTestAnalysis::update(), HcalTB02Analysis::update(), DoCastorAnalysis::update(), HcalTestAnalysis::update(), CaloMETAnalyzer::validateMET(), PFMETAnalyzer::validateMET(), Utils::VectorEPRtoXYZ(), pftools::Utils::VectorEPRtoXYZ(), and ECALRecHitAnalyzer::WriteECALRecHits().
T __attribute__::transverse | ( | ) | const |
Another name for perp()
Definition at line 337 of file Basic3DVectorLD.h.
Referenced by SequentialVertexFitter< N >::fit().
Basic3DVector __attribute__::unit | ( | ) | const |
Unit vector parallel to this. If mag() is zero, a zero vector is returned.
Definition at line 364 of file Basic3DVectorLD.h.
T __attribute__::x | ( | ) | const |
Basic2DVector<T> __attribute__::xy | ( | ) | const |
Definition at line 316 of file Basic3DVectorLD.h.
{
T __attribute__::y | ( | ) | const |
T __attribute__::z | ( | ) | const |
Definition at line 452 of file Basic3DVectorLD.h.
Referenced by align::diffAlignables().
Definition at line 449 of file Basic3DVectorLD.h.
Definition at line 450 of file Basic3DVectorLD.h.
Definition at line 451 of file Basic3DVectorLD.h.
Referenced by LaserAlignment::testRoutine().