2010年8月25日水曜日
2010年8月24日火曜日
The Dynamical State of Brightest Cluster Galaxies and The Formation of Cluste
http://adsabs.harvard.edu/abs/2009AJ....137.4795C
abstract
We confirm what was previously observed based on much smaller samples, namely, that a large fraction of BCMs have significant peculiar velocities. From a subsample of 452 clusters having at least 10 measured radial velocities, we estimate a median BCM peculiar velocity of 32% of their host clusters' radial velocity dispersion.
abstract
We confirm what was previously observed based on much smaller samples, namely, that a large fraction of BCMs have significant peculiar velocities. From a subsample of 452 clusters having at least 10 measured radial velocities, we estimate a median BCM peculiar velocity of 32% of their host clusters' radial velocity dispersion.
2010年8月14日土曜日
Online bookmarks
http://delicious.com/caferedsky
http://b.hatena.ne.jp/caferedsky/
not flexible in editing tags
http://b.hatena.ne.jp/caferedsky/
not flexible in editing tags
2010年8月6日金曜日
latex on snow Leopard (OS X)
http://osksn2.hep.sci.osaka-u.ac.jp/~taku/osx/install_ptex.html
にしたがって、いろいろ、download, install。再現性がないのが、心配。
2時間くらいで、なんとか、ApJL texをps化に成功。
日本語がでない。
-> ¥documentclass[a4j]
としたら、でた。
\includegraphics[scale=.28]{fig1b.ps}
->
! LaTeX Error: Unknown graphics extension: .ps.
TexShop を使わずに、
terminalで、latex, dvipsを使ったら問題なくコンパイルできた。
やれやれ。
にしたがって、いろいろ、download, install。再現性がないのが、心配。
2時間くらいで、なんとか、ApJL texをps化に成功。
日本語がでない。
-> ¥documentclass[a4j]
としたら、でた。
\includegraphics[scale=.28]{fig1b.ps}
->
! LaTeX Error: Unknown graphics extension: .ps.
TexShop を使わずに、
terminalで、latex, dvipsを使ったら問題なくコンパイルできた。
やれやれ。
2010年8月4日水曜日
HongoScripts for Suzaku data
http://www-utheal.phys.s.u-tokyo.ac.jp/~yuasa/wiki/index.php/HongoScripts
looks nice.
looks nice.
2010年8月3日火曜日
2010年7月15日木曜日
getImageFItsKey1.pl
a perl script to output some keywords from a image fits header.
This is for suzaku/XIS image fits.
I hope this to help your job.
#!/usr/local/bin/perl -w
$image="$ARGV[0]+0";
# print $image;
#$dbg=1;
$dbg=0;
sub getKey {
my $fits = $_[0];
my $key = $_[1];
system("fkeypar $fits $key ") && return -1;
my $value = `pget fkeypar value`;
chomp($value);
return $value;
}
my $object = &getKey($image, "OBJECT");
printf("#1 object = %12s¥n", $object) if ($dbg);
my $exposure = &getKey($image, "EXPOSURE");
my $cts = &getKey($image, "TOTCTS");
my $rate=0;
if ($exposure >= 0){
$rate = $cts/$exposure;
}
printf("%12s |%-28s |%6.1f (ks) |%6.1f (kcts) |%6.1f (c/s) ¥n",
$image, $object, $exposure/1000, $cts/1000, $rate);
exit;
This is for suzaku/XIS image fits.
I hope this to help your job.
#!/usr/local/bin/perl -w
$image="$ARGV[0]+0";
# print $image;
#$dbg=1;
$dbg=0;
sub getKey {
my $fits = $_[0];
my $key = $_[1];
system("fkeypar $fits $key ") && return -1;
my $value = `pget fkeypar value`;
chomp($value);
return $value;
}
my $object = &getKey($image, "OBJECT");
printf("#1 object = %12s¥n", $object) if ($dbg);
my $exposure = &getKey($image, "EXPOSURE");
my $cts = &getKey($image, "TOTCTS");
my $rate=0;
if ($exposure >= 0){
$rate = $cts/$exposure;
}
printf("%12s |%-28s |%6.1f (ks) |%6.1f (kcts) |%6.1f (c/s) ¥n",
$image, $object, $exposure/1000, $cts/1000, $rate);
exit;
登録:
投稿 (Atom)