コード例 #1
0
 def test_copy_meta(self):
     bins = [1.2, 1.4, 1.5, 1.7, 1.8]
     values = [4, 0, 3, 7.2]
     errors2 = [1, 0, 4, 2.6]
     h1 = Histogram1D(bins, values, errors2, custom1="custom1", name="name")
     copy = h1.copy()
     assert h1.meta_data == copy.meta_data
コード例 #2
0
ファイル: test_histogram1d.py プロジェクト: janpipek/physt
 def test_copy_meta(self):
     bins = [1.2, 1.4, 1.5, 1.7, 1.8 ]
     values = [4, 0, 3, 7.2]
     errors2 = [1, 0, 4, 2.6]
     h1 = Histogram1D(bins, values, errors2, custom1="custom1", name="name")
     copy = h1.copy()
     assert h1.meta_data == copy.meta_data
コード例 #3
0
 def test_copy_with_errors(self):
     bins = [1.2, 1.4, 1.5, 1.7, 1.8]
     values = [4, 0, 3, 7.2]
     errors2 = [1, 0, 4, 2.6]
     h1 = Histogram1D(bins, values, errors2)
     assert h1.copy() == h1
コード例 #4
0
ファイル: test_histogram1d.py プロジェクト: janpipek/physt
 def test_copy_with_errors(self):
     bins = [1.2, 1.4, 1.5, 1.7, 1.8 ]
     values = [4, 0, 3, 7.2]
     errors2 = [1, 0, 4, 2.6]
     h1 = Histogram1D(bins, values, errors2)
     assert h1.copy() == h1