|
@@ -64,7 +64,7 @@ void UEvent::print(Option_t* option) {
|
|
|
}
|
|
|
|
|
|
//_________________
|
|
|
-UParticle* UEvent::GetParticle(Int_t index) const {
|
|
|
+UParticle* UEvent::getParticle(Int_t index) const {
|
|
|
// Get pointer to the particle.
|
|
|
// index - index of the particle
|
|
|
if(index < 0) {
|
|
@@ -77,7 +77,7 @@ UParticle* UEvent::GetParticle(Int_t index) const {
|
|
|
}
|
|
|
|
|
|
//_________________
|
|
|
-void UEvent::AddParticle(Int_t index, Int_t pdg, Int_t status,
|
|
|
+void UEvent::addParticle(Int_t index, Int_t pdg, Int_t status,
|
|
|
Int_t parent, Int_t parentDecay,
|
|
|
Int_t mate, Int_t decay, Int_t child[2],
|
|
|
Double_t px, Double_t py, Double_t pz, Double_t e,
|
|
@@ -91,7 +91,7 @@ void UEvent::AddParticle(Int_t index, Int_t pdg, Int_t status,
|
|
|
}
|
|
|
|
|
|
//_________________
|
|
|
-void UEvent::AddParticle(Int_t index, Int_t pdg, Int_t status,
|
|
|
+void UEvent::addParticle(Int_t index, Int_t pdg, Int_t status,
|
|
|
Int_t parent, Int_t parentDecay,
|
|
|
Int_t mate, Int_t decay, Int_t child[2],
|
|
|
TLorentzVector mom, TLorentzVector pos,
|
|
@@ -104,7 +104,7 @@ void UEvent::AddParticle(Int_t index, Int_t pdg, Int_t status,
|
|
|
}
|
|
|
|
|
|
//_________________
|
|
|
-void UEvent::AddParticle(const UParticle& particle) {
|
|
|
+void UEvent::addParticle(const UParticle& particle) {
|
|
|
// Add particle to the array
|
|
|
new ((*fParticles)[fNpa]) UParticle(particle);
|
|
|
fNpa += 1;
|
|
@@ -128,14 +128,14 @@ void UEvent::setParameters(const Int_t& eventNr, const Double_t& b,
|
|
|
}
|
|
|
|
|
|
//_________________
|
|
|
-void UEvent::Clear() {
|
|
|
+void UEvent::clear() {
|
|
|
// Remove the particles from the array and reset counter
|
|
|
fParticles->Clear();
|
|
|
fNpa = 0;
|
|
|
}
|
|
|
|
|
|
//_________________
|
|
|
-void UEvent::RemoveAt(Int_t i) {
|
|
|
+void UEvent::removeAt(Int_t i) {
|
|
|
// Remove one particle from the array.
|
|
|
// i - index of the particle.
|
|
|
// Array is automaticaly compressed afterwards, mind the indexing
|