Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history


Conflicts:
	CS_catalogue/cs_catalogue_2012.cat
	CS_catalogue/cs_catalogue_preparation.py
	CS_catalogue/cs_table_2012.cat
	CS_catalogue/todo.txt
  • Loading branch information
svyatoslav-zubrin committed Mar 29, 2013
2 parents ad3f1be + 4649f07 commit 8600fce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ pip-log.txt

#Mr Developer
.mr.developer.cfg
.DS_Store
8 changes: 5 additions & 3 deletions CS_catalogue/cs_catalogue_preparation.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,6 @@ def preparePestalozzi():
# print maserSource.description()
return pestalozziMasers


def prepareValttz():
filename = "./catalogues/valtts.catalogue"
sourcesInitStringNumber = 97
Expand Down Expand Up @@ -603,7 +602,6 @@ def description(self):
desc_string += result.description_bronfman()
return desc_string


def prepareBronfman():
filename = "./catalogues/bronfman.catalogue"
sourcesInitStringNumber = 55
Expand Down Expand Up @@ -732,7 +730,6 @@ def description(self):
desc_string += result.description_larionov()
return desc_string


def prepareLarionov():
filename = "./catalogues/larionov_data_new.txt"
sourcesInitStringNumber = 3
Expand Down Expand Up @@ -821,6 +818,11 @@ def description(self):
desc_string += "Ta*(%6.2f) Vlsr(%+8.2f) dV(%4.2f) rms(%6.3f) year(%4i)" % (self.antena_temperature, self.velocity, self.linewidth, self.rms, self.year)
return desc_string

def description(self):
desc_string = "%20.20s " % ("RT22:" + self.name)
desc_string += self.coordinates.description() + " "
desc_string += "Ta(%5.2f) Vlsr(%5.2f) dV(%4.2f) rms(%6.3f)" % (self.antena_temperature, self.velocity, self.linewidth, self.rms)
return desc_string

#-----------------------------------------------------------------------------
class OurNondetection(Source):
Expand Down

0 comments on commit 8600fce

Please sign in to comment.