|
Laura++
3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
|
Go to the documentation of this file.
37 #include "TDatabasePDG.h"
44 theDatabase_( new TDatabasePDG() ),
104 TParticlePDG* part( 0 );
105 TParticlePDG* antipart( 0 );
111 theDatabase_->AddParticle( "deuteron", "deuteron", 1.8756134, kTRUE, 0.0, 3, "Nucleus", 1011 );
112 antipart = theDatabase_->AddAntiParticle( "anti-deuteron", -1011 );
113 part->SetAntiParticle( antipart );
114 antipart->SetAntiParticle( part );
116 part = theDatabase_->AddParticle( "tritium", "tritium", 2.80925, kTRUE, 0.0, 3, "Nucleus", 1021 );
117 antipart = theDatabase_->AddAntiParticle( "anti-tritium", -1021 );
118 part->SetAntiParticle( antipart );
119 antipart->SetAntiParticle( part );
121 part = theDatabase_->AddParticle( "He3", "He3", 2.80923, kTRUE, 0.0, 6, "Nucleus", 1012 );
122 antipart = theDatabase_->AddAntiParticle( "anti-He3", -1012 );
123 part->SetAntiParticle( antipart );
124 antipart->SetAntiParticle( part );
126 part = theDatabase_->AddParticle( "alpha", "alpha", 3.727417, kTRUE, 0.0, 3, "Nucleus", 1022 );
127 antipart = theDatabase_->AddAntiParticle( "anti-alpha", -1022 );
128 part->SetAntiParticle( antipart );
129 antipart->SetAntiParticle( part );
132 theDatabase_->AddParticle( "eta_c(2S)", "eta_c(2S)", 3.628, kTRUE, 0.0195, 0, "Meson", 20441 );
135 theDatabase_->AddParticle( "psi(3770)", "psi(3770)", 3.7699, kTRUE, 0.0236, 0, "Meson", 40443 );
137 part = theDatabase_->AddParticle( "rho(2S)0", "rho(2S)0", 1.46, kTRUE, 0.31, 0, "Meson", 30113 );
138 part = theDatabase_->AddParticle( "rho(2S)+", "rho(2S)+", 1.46, kTRUE, 0.31, 3, "Meson", 30213 );
139 antipart = theDatabase_->AddAntiParticle( "rho(2S)-", -30213 );
140 part->SetAntiParticle( antipart );
141 antipart->SetAntiParticle( part );
143 part = theDatabase_->AddParticle( "rho(3S)0", "rho(3S)0", 1.46, kTRUE, 0.31, 0, "Meson", 40113 );
144 part = theDatabase_->AddParticle( "rho(3S)+", "rho(3S)+", 1.46, kTRUE, 0.31, 3, "Meson", 40213 );
145 antipart = theDatabase_->AddAntiParticle( "rho(3S)-", -40213 );
146 part->SetAntiParticle( antipart );
147 antipart->SetAntiParticle( part );
149 part = theDatabase_->AddParticle( "Xsu", "Xsu", 1.6, kTRUE, 0.5, 3, "Meson", 30353 );
150 antipart = theDatabase_->AddAntiParticle( "anti-Xsu", -30353 );
151 part->SetAntiParticle( antipart );
152 antipart->SetAntiParticle( part );
154 part = theDatabase_->AddParticle( "Xu0", "Xu0", 1., kTRUE, 0., 0, "Special", 41 );
155 part = theDatabase_->AddParticle( "Xu+", "Xu+", 1., kTRUE, 0., 3, "Special", 42 );
157 part->SetAntiParticle( antipart );
158 antipart->SetAntiParticle( part );
160 part = theDatabase_->AddParticle( "Xsd", "Xsd", 1.6, kTRUE, 0.5, 0, "Meson", 30343 );
161 antipart = theDatabase_->AddAntiParticle( "anti-Xsd", -30343 );
162 part->SetAntiParticle( antipart );
163 antipart->SetAntiParticle( part );
165 part = theDatabase_->AddParticle( "K'*0", "K'*0", 1.414, kTRUE, 0.232, 0, "Meson", 100313 );
166 antipart = theDatabase_->AddAntiParticle( "anti-K'*0", -100313 );
167 part->SetAntiParticle( antipart );
168 antipart->SetAntiParticle( part );
170 part = theDatabase_->AddParticle( "K'*+", "K'*+", 1.414, kTRUE, 0.232, 3, "Meson", 100323 );
171 antipart = theDatabase_->AddAntiParticle( "K'*-", -100323 );
172 part->SetAntiParticle( antipart );
173 antipart->SetAntiParticle( part );
175 part = theDatabase_->AddParticle( "K''*0", "K''*0", 1.717, kTRUE, 0.322, 0, "Meson", 30313 );
176 antipart = theDatabase_->AddAntiParticle( "anti-K''*0", -30313 );
177 part->SetAntiParticle( antipart );
178 antipart->SetAntiParticle( part );
180 part = theDatabase_->AddParticle( "K''*+", "K''*+", 1.717, kTRUE, 0.322, 3, "Meson", 30323 );
181 antipart = theDatabase_->AddAntiParticle( "K''*-", -30323 );
182 part->SetAntiParticle( antipart );
183 antipart->SetAntiParticle( part );
191 LauPDGList::iterator iter = particles_.find( theCode );
199 TParticlePDG* theTParticle = theDatabase_->GetParticle( theCode );
200 if ( theTParticle == 0 ) {
201 cerr << "ERROR in LauDatabasePDG::createParticle : Invalid PDG code: " << theCode << endl;
207 std::pair<LauPDGList::iterator, bool> insertResult = particles_.insert(
208 std::make_pair( theCode, theParticle ) );
209 if ( ! insertResult.second ) {
210 cerr << "ERROR in LauDatabasePDG::createParticle : Something went wrong inserting particle "
211 << theCode << " into the map." << endl;
217 TParticlePDG* theTAntiParticle = theTParticle->AntiParticle();
220 if ( theTAntiParticle == 0 || theTAntiParticle == theTParticle ) {
224 cout << "INFO in LauDatabasePDG::createParticle : Created self-conjugate particle "
225 << theTParticle->GetName() << endl;
232 Int_t conjCode = antiParticle-> code();
233 insertResult = particles_.insert( std::make_pair( conjCode, antiParticle ) );
234 if ( ! insertResult.second ) {
235 cerr << "ERROR in LauDatabasePDG::createParticle : Something went wrong inserting anti-particle "
236 << conjCode << " into the map." << endl;
249 cout << "INFO in LauDatabasePDG::createParticle : Created particle "
250 << theTParticle->GetName() << " and its conjugate " << theTAntiParticle->GetName()
259 Int_t theCode = this-> pdgCode( theString );
260 if ( theCode == 0 ) {
261 cerr << "ERROR in LauDatabasePDG::createParticle : Invalid particle string: " << theString
275 TParticlePDG* theParticle = theDatabase_->GetParticle( theString );
276 if ( theParticle == 0 ) {
277 cerr << "ERROR in LauDatabasePDG::pdgCode : Invalid particle string: " << theString << endl;
280 return theParticle->PdgCode();
285 TParticlePDG* theParticle = theDatabase_->GetParticle( theCode );
286 if ( theParticle == 0 ) {
287 cerr << "ERROR in LauDatabasePDG::pdgName : Invalid particle code: " << theCode << endl;
290 return theParticle->GetName();
Singleton class that provides access to particle property records.
virtual ~LauDatabasePDG() Destructor.
const LauParticlePDG * createParticle(Int_t theCode) Create particle in the database for a given PDG code and return the new particle.
TDatabasePDG * theDatabase_ The ROOT database.
void setAntiParticle(const LauParticlePDG *antiPart) Set the antiparticle.
LauDatabasePDG() Constructor.
File containing declaration of LauParticlePDG class.
void addMissingParticles() Add particles to the ROOT database that are missing from the default setup.
static LauDatabasePDG * theInstance_ The singleton instance.
static TString string(Int_t code) Method to convert from a PDG code to a particle name string.
static LauDatabasePDG & get() Get the database instance.
const Bool_t debug_ Debug flag - set in constructor.
Class for storing particle properties.
TString pdgName(Int_t theCode) Get the associated name string for a given pdgCode.
File containing declaration of LauDatabasePDG class.
Int_t code() const The particle PDG code.
static const LauParticlePDG * particle(Int_t code) Get particle object based on the PDG code.
LauPDGList particles_ The list of particle objects.
static Int_t code(const TString &string) Method to convert from a particle name string into a PDG code.
Int_t pdgCode(const TString &theString) Get the associated pdgCode for a given particle name string.
|