Changes in / [9e1e2eb:9c52415] in git
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/FCC/FCChh_PileUpVtx.tcl
r9e1e2eb r9c52415 28 28 MuonMomentumSmearing 29 29 30 EnergyLoss31 32 30 TrackMerger 33 34 31 35 32 TrackSmearing … … 145 142 set Bz 4.0 146 143 } 144 147 145 148 146 … … 247 245 } 248 246 249 #################################250 # Charged Energy Loss (dE/dx)251 #################################252 253 module EnergyLoss EnergyLoss {254 add InputArray ChargedHadronMomentumSmearing/chargedHadrons255 add InputArray ElectronMomentumSmearing/electrons256 add InputArray MuonMomentumSmearing/muons257 }258 259 247 ############## 260 248 # Track merger … … 268 256 set OutputArray tracks 269 257 } 270 271 258 272 259 -
classes/DelphesClasses.cc
r9e1e2eb r9c52415 148 148 Phi(0), ErrorPhi(0), 149 149 Xd(0), Yd(0), Zd(0), Td(0), 150 DeDx(0),151 150 VertexingWeight(0), 152 151 TrackResolution(0), … … 307 306 object.Area = Area; 308 307 object.L = L; 309 object.DeDx = DeDx;310 308 object.ErrorT = ErrorT; 311 309 object.D0 = D0; … … 439 437 Area.SetXYZT(0.0, 0.0, 0.0, 0.0); 440 438 L = 0.0; 441 DeDx = 0.0;442 439 ErrorT = 0.0; 443 440 D0 = 0.0; -
classes/DelphesClasses.h
r9e1e2eb r9c52415 477 477 Float_t ErrorDZ; // track longitudinal impact parameter error 478 478 479 Float_t DeDx; // track charged energy loss in MeV/cm480 481 479 TRef Particle; // reference to generated particle 482 480 … … 569 567 570 568 Int_t VertexIndex; // reference to vertex 571 572 Float_t DeDx; // track charged energy loss in MeV/cm573 569 574 570 static CompBase *fgCompare; //! … … 678 674 Float_t Zd; 679 675 680 // PID variables681 Float_t DeDx; // track charged energy loss in MeV/cm682 683 684 676 // Vertexing variables 685 677 Float_t VertexingWeight; -
modules/ModulesLinkDef.h
r9e1e2eb r9c52415 32 32 #include "modules/ParticlePropagator.h" 33 33 #include "modules/Efficiency.h" 34 #include "modules/EnergyLoss.h"35 34 #include "modules/IdentificationMap.h" 36 35 #include "modules/EnergySmearing.h" … … 89 88 #pragma link C++ class ParticlePropagator+; 90 89 #pragma link C++ class Efficiency+; 91 #pragma link C++ class EnergyLoss+;92 90 #pragma link C++ class IdentificationMap+; 93 91 #pragma link C++ class EnergySmearing+; -
modules/TreeWriter.cc
r9e1e2eb r9c52415 346 346 347 347 entry->L = candidate->L; 348 entry->DeDx = candidate->DeDx; // in MeV/cm349 348 350 349 entry->D0 = candidate->D0; … … 493 492 494 493 entry->L = candidate->L; 495 entry->DeDx = candidate->DeDx;496 494 497 495 entry->D0 = candidate->D0;
Note:
See TracChangeset
for help on using the changeset viewer.